sh jupyter_install.sh

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh jupyter_install.sh相关的知识,希望对你有一定的参考价值。

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
sudo chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
source ~/.bashrc
conda create -n py3 python=3
source activate py3
conda install -y pip jupyter xlrd pandas numpy sqlalchemy plotly seaborn
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/t/texlive-upquote-svn26059.v1.3-55.el7.noarch.rpm
sudo rpm -Uvh texlive-upquote-svn26059.v1.3-55.el7.noarch.rpm
sudo yum -y install texlive texlive-*.noarch
jupyter notebook --generate-config
sed -i 's/#c.NotebookApp.allow_password_change = True/c.NotebookApp.allow_password_change = True/g' \
/home/ec2-user/.jupyter/jupyter_notebook_config.py
jupyter notebook password 
jupyter notebook --ip=0.0.0.0 --port=8080 --no-browser &

以上是关于sh jupyter_install.sh的主要内容,如果未能解决你的问题,请参考以下文章

如何使我的命令行在具有扩展名(.sh)和名称如“weird.sh.sh.sh”的文件上工作

sh sh_template.sh

sh sh.sh

Linux下面如何运行 SH文件

配置告警系统主脚本main.sh mon.sh load.sh 502.sh disk.sh

shell 脚本各种执行方式(source ./*.sh, . ./*.sh, ./*.sh)的区别