Install the Miniconda environment on Remote Server
Anaconda installation doesn’t need to ask for the admin permission. So it’s a good choice used on server. I would show how to install on the server in the following.
Download the Miniconda package
1 | # use `curl` to download the package from miniconda. In own computer of MacOS. |
Install on the Server
1 | # give the execute permission of the file |
Activate the Environment
1 | source Miniconda/bin/activate |
Then you have the environment for your project, you can just use pip install xx
to install the modules you need.