Skip to content

Instantly share code, notes, and snippets.

@asears
Created November 11, 2021 10:54
Show Gist options
  • Select an option

  • Save asears/144fc340ca2f089e770ee53957f65c5f to your computer and use it in GitHub Desktop.

Select an option

Save asears/144fc340ca2f089e770ee53957f65c5f to your computer and use it in GitHub Desktop.
Fixing venv conflicts with Windows and conda and Pandas

Switching to VirtualEnv from Conda might cause some issues with the system path's python and pip installs.

There seems to be a bug.

pip install pandas will setup the install in the Anaconda folder. running pip or pip3.exe files in the scripts folder to install results in error.

Fatal error in launcher: Unable to create process using '"d:\projects\python\venv\scripts\python.exe" "D:\projects\python\venv\Scripts\pip3.exe" install pandas

python -m venv venv
cd venv\scripts
python pip3.exe install pandas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment