18
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bash on ubuntu on windows に anaconda をサクッとに入れる

Posted at

GPU付きのwindows10を入手したので機械学習の勉強用に使おうと思いました。
予想はしていましたがwindows版をインストールしてもbash上ではpythonのバージョンは3系にならず。
入手したてのマシンでpyenvとか入ってないし、apt-getとか使わずにサクッと入れられないか試しました
#anaconda for linux をinstallするまで

ダウンロード

ダウンロード先はこちら。
https://www.continuum.io/downloads
Download for Linux というタブがあるので、そちらからインストーラをダウンロード。

コマンドを実行

サイトにあるコマンドはこちら
bash Anaconda3-4.3.0-Linux-x86_64.sh
ただ、今回参照したい対象ファイルはwindowsでダウンロードしたので、ubuntu側のルートディレクトリにはありません。

そこで以下のコマンド

bash /mnt/c/Users/user_name/Downloads/Anaconda3-4.3.0-Linux-x86_64.sh

インストールされました

~$ ls /home/user_name/anaconda3/
LICENSE.txt  bin  conda-meta  doc  envs  etc  include  lib  libexec  mkspecs  phrasebooks  pkgs  plugins  qml  sbin  share  ssl  t

ドライブの設定によっては /c/ のところもdだったりするかもしれません。
どうやらwindowsのディスクは /mnt ディレクトリにマウントされているようです。
これを理解してればwindowsでダウンロードしたファイルをubuntuで参照するの簡単そうだなと思いました。

18
14
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?