I tried to set it referring to the following article, but it didn't work so I adjusted it. https://qiita.com/iiou16/items/d4b6ddb03e06f527759b
Many people who are doing machine learning are not accustomed to this kind of thing. .. ..
cygwin64/home/User name/.bashrc
ANA_PATH=/cygdrive/c/Anaconda3
export PATH=\$ANA_PATH:\$ANA_PATH/Library/bin:\$ANA_PATH/Scripts:$PATH
$ conda
command not found
$ python
-bash: /cygdrive/c/Users/User name/AppData/Local/Microsoft/WidowsApps/python Permission denied
$ which python
no python in (abridgement)
1st line: Adjust the installation position 2nd line: No need to escape with backslash
cygwin64/home/User name/.bashrc
ANA_PATH=/cygdrive/c/Users/User name/anaconda3
export PATH=$ANA_PATH:$ANA_PATH/Library/bin:$ANA_PATH/Scripts:$PATH
Recommended Posts