RedstoneValley
@RedstoneValley@sh.itjust.works
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on Microsoft pushes staff to use internal AI tools more, and may consider this in reviews. 'Using AI is no longer optional.' 3 days ago:
Did this Microsoft tactic ever work in their favour? Forcing people to use things they don’t like? Internet Explorer, Edge, Bing Search, AI and so on. I think it’s not a long-term success story. Also, why focus on tool usage instead of actual goals.
- Comment on Using source command for virtual Python environment 5 months ago:
I think VS Code is doing its own thing and it might be better if you create your own. It doesn’t have to be called .venv, that is just a VS Code convention.
python -m venv myenv
and then
source myvenv/bin/activate
should do it.
Otherwise there is something wrong in your path or a weird python installation.
python --version
should give you a version number 3.4 or above, because these have venv included and need no additional pip installs