以下のVagrantfileを使用して、ptpythonとanacondaがインストールされた仮想マシンを構築する事ができます。
Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/debian-9.2"
config.vm.hostname = "db92ptpython"
config.vm.provider :virtualbox do |vbox|
vbox.name = "db92ptpython"
vbox.cpus = 2
vbox.memory = 2048
vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
end
config.vm.network "private_network", ip: "192.168.55.103", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.103", :netmask => "255.255.255.0"
config.vm.provision "shell", inline: <<-SHELL
# update packages
apt-get update
#DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
# install anaonda
wget https://repo.continuum.io/archive/Anaconda3-5.0.0-Linux-x86_64.sh
chmod +x Anaconda3-5.0.0-Linux-x86_64.sh
./Anaconda3-5.0.0-Linux-x86_64.sh -b -p /opt/anaconda
source /opt/anaconda/bin/activate
pip install --upgrade pip
# install ptpython
pip install ptpython
echo 'execute following commands.'
echo 'source /opt/anaconda/bin/activate'
echo 'ptpython'
SHELL
end
〇ptpythonの画面
○関連情報
・ptpythonに関する他の記事はこちらを参照してください。
0 件のコメント:
コメントを投稿