Anaconda python distribution is very convenient to deploy scientific computing env (SCE) and switch python versions as you want. By default, the installation will locate python into ~/anaconda
and the SCE can only benefit the local user.
But what I need is to provide a complete SCE wit Anaconda while masking the system-wide python version, because my cluster is running Spark and provides services for multiple users in our team. Is it possible with current Anaconda version?
Xiaming
The first recommended software is to use Anaconda as it comes with the majority of useful handy packages, and it can be installed directly to your working machine in portable mode without requiring administrative right.
The answer for you will be No. if you already had anaconda installed in your laptop, once you open it up you will realized you can install Python within the software. Anaconda will not only included Python, R also will be included.
The installer lets you install anywhere. You can install it to a global location, like /opt/anaconda
.
Add the anaconda PATH to /etc/profile
:
for anaconda 2 :
PATH=$PATH:$HOME/anaconda/bin
for anaconda 3 :
PATH=$PATH:$HOME/anaconda3/bin
and then :
source /etc/profile
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With