Python Environment Setup Guide¶
1. Installing Anaconda3
- Download Anaconda3
$ wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
- Run the installer (Installer requires bzip, please install it if you don’t have it)
$ bash ./Anaconda3-2019.03-Linux-x86_64.sh
Choose “Yes” for question “Do you wish the installer to initialize Anaconda3 by running conda init?”. More information about Anaconda can be found from Anaconda Documentation.
- Add Anaconda3 to PATH, for example:
$ export PATH=/home/<user>/anaconda3/bin:$PATH $ . /home/<user>/anaconda3/etc/profile.d/conda.sh
2. Setting up xf_blas environment to include all conda packages used by xf_blas L1 primitive testing infrastructure.
Please run following command under directory xf_blas/.
$ conda config --add channels anaconda $ conda env create -f environment.yml $ conda activate xf_blas $ conda install --file requirements.txt
3. Deactivate xf_blas environment after testing
Note: Please don’t take this step if you intend to run L1 primitives’ testing process. You only take it after you’ve finished all testing.
$ conda deactivate