Skip to content

Getting bootstrapper error when running the install command for version 1.4 #57

Closed Answered by boonhapus
alexwillingham98 asked this question in Q&A
Discussion options

You must be logged in to vote

When you install a new version of python on Windows, it gets added to the front of your PATH variable by default. Which means when you type python , the OS will go searching down the list of directories there. Python311 was sitting in front of Python37.

Whenever you create a virtual environment in python, all that's happening is it bootstraps a new directory and symlinks/references the then-system version of python.

No Python at 'C:\Users\alexw\AppData\Local\Programs\Python\Python37\python.exe'

So essentially what's happening is CS Tools is looking at the old directory and trying to call python , which resolves to python3.11 instead. Nuking the virtual environment, or replacing all the …

Replies: 2 comments 9 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
9 replies
@boonhapus
Comment options

@alexwillingham98
Comment options

@alexwillingham98
Comment options

@boonhapus
Comment options

Answer selected by boonhapus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
bug Something isn't working
2 participants