I am trying to downgrade python for tensorflow in a virtual env, the only way I found how to do this was to download Python3.6 and use the command
virtualenv -m TempEnv C:\Dev\Projects -p C:\Dev\Projects\Python3.6\python.exe
but I am getting the error:
FileNotFoundError: [WinError 3] The system cannot find the path specified: 'C:\\Dev\\Projects\\Python3.6\\DLLs'
Why is it looking for a DLL folder? this was not in the python 3.6 embedded download
Is there a better way to do this through virtual environments? I dont want to screw up my global python installation and libraries by downgrading everything
Thanks,