LinuxにもAnacondaのショートカットがほしい
1049 ワード
はじめに
LinuxにAnacondaを入れた。普段はactiveにしていないため、conda activate
とanaconda-navigator
の立ち上げの2つを毎回打ち込むことに嫌気が差しためんどくさがりによる雑な備忘録
作り方
- 起動シェルの作成
自分は適当にanaconda.shとしてhome下に作成した
#!/bin/bash
source ~/.bashrc
# anacondaをインストールした場所によって変更(自分は/opt下にインストールしたため)
source /opt/anaconda3/etc/profile.d/conda.sh
cd ~
cd labo-py #自分の作業ディレクトリを指定
conda activate
anaconda-navigator
#!/bin/bash
source ~/.bashrc
# anacondaをインストールした場所によって変更(自分は/opt下にインストールしたため)
source /opt/anaconda3/etc/profile.d/conda.sh
cd ~
cd labo-py #自分の作業ディレクトリを指定
conda activate
anaconda-navigator
これで毎回押すだけヽ(=´▽`=)ノ
Author And Source
この問題について(LinuxにもAnacondaのショートカットがほしい), 我々は、より多くの情報をここで見つけました https://qiita.com/Raisa0726/items/04c2efd7f578ddb7ad82著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .