I'm developing web application on raspberry pi using Django. I set up django, virtual enviroment and server on raspberry pi. Now I want to write code in pyCharm and deploy it on remote machine(raspi). I've copied all folders (virtualenviroment also) to my pc. I'm wondering- how can I 'take' this virtual enviroment from raspberry to have also working on pyCharm? I've tired:
C:\MyPath\AquaControl>activate AquaControlEnv Could not find conda environment: AquaControlEnv and by using
conda info --envs C:\MyPath\AquaControl>conda info --envs # conda environments: # base * C:\Users\Me\Anaconda3 Only this one from PC is discoverable. Or I can create local virtual enviroment and this will not cause any problems with deployment on remote?
pip freeze > requirements.txtandpip install -r requirements.txt.