Using Conda To Create Virtual Environment, I Get The Wrong Version Of Python Despite Specifying Version. Why?
I need a virtual environment with Python 3.5, so I can run some tensorflow projects (tensorflow doesn't work on Python 3.6, which I normally use). I use conda because (as you'll se
Solution 1:
I finally figured out what was wrong (sort of) by looking at this question. If i typed in
cd ..
to go one step up in the folder struction, and then checked my Python version, I had the right version (Python 3.5). From there I could install tensorflow and it was imported to python without problem. I have no idea why, but it works so I can't complain.
Post a Comment for "Using Conda To Create Virtual Environment, I Get The Wrong Version Of Python Despite Specifying Version. Why?"