I have Anaconda with Python 3.6.4 install on a pc without an internet connection.
I want to use virtualenv to create a new environment.
I thought that virtualenv c:\proj\myNewEnv
will create a new virtual environment which is just like my base installation and inside this environment I can install more packages.
It seems I miss understood how it works.
In my base installation I have "TensorFlow
" importing just fine.
After running "virtualenv c:\proj\myNewEnv
" I got a new folder named "c:\proj\myNewEnv
" and inside it, I have directory "Scripts" with python.exe and activate.bat.
But no matter what I run, I am getting a python shell that does not know tensorflow.
It seems it is just a copy of my python.exe and pip.exe without all the original packages.
Is there a way to create a virtual environment that is a copy of my original or depend on my original installation (remember, I don't have an internet connection)?
Thanks in advance.