raspberry pi setting

라즈페리파이에 미니콘다(아나콘다 설치)


Installing Miniconda on Raspberry Pi and adding Python 3.5 / 3.6

Skip the first section if you have already installed Miniconda successfully.

Installation of Miniconda on Raspberry Pi 


wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh
sudo md5sum Miniconda3-latest-Linux-armv7l.sh
sudo /bin/bash Miniconda3-latest-Linux-armv7l.sh


Accept the license agreement with yes

When asked, change the install location: /home/pi/miniconda3

Do you wish the installer to prepend the Miniconda3 install location to PATH in your /root/.bashrc ? yes

Now add the install path to the PATH variable:


sudo nano /home/pi/.bashrc


Go to the end of the file .bashrc and add the following line:


export PATH="/home/pi/miniconda3/bin:$PATH"


Save the file and exit.

To test if the installation was successful, open a new terminal and enter


conda


아나콘다를 설치하면서 miniconda3 폴더가 생겼는데
이부분에 대하여 user에 대한 권한 추가가 필요하다 

$ sudo chown -R 'username' miniconda3


0 댓글