ubuntu 运行vgg相关配置
内容纲要
安装Python3.7
1.执行所有升级
sudo apt update
sudo apt upgrade -y
2.安装编译Python源程序所需的包
sudo apt install build-essential -y
sudo apt install libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev -y
sudo apt-get install zlib1g-dev
3.下载Python 3.7源程序压缩包
wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
4.解压缩
tar -xzvf Python-3.7.1.tgz
5.配置与安装
cd Python-3.7.1
./configure --enable-optimizations
sudo make
sudo make install
6.查看Python版本
# python3
Python 3.7.1 (default, Nov 21 2018, 16:35:49)
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
7.升级pip和更换pip源
sudo pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip3 install --upgrade pip
pip安装依赖
pip install jupyter
pip install keras
pip install Pillow
pip install tensorflow
配置jupyter
1.安装jupyterlab:
pip3 install jupyterlab
2.生成配置文件
jupyter notebook --generate-config
3.进去Python环境生成密码
from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed'
sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed
这一串就是要jupyter_notebook_config.py 添加的密码。
4.修改配置文件
先打开配置文件,如果不存在即是创建
vim ~/.jupyter/jupyter_notebook_config.py
在 jupyter_notebook_config.py 中找到下面的行,取消注释并修改。
c.NotebookApp.ip='104.222.1.1'
c.NotebookApp.open_browser = False
c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
这里注意:c.NotebookApp.ip='104.222.1.1',这里应该填写你服务器的ip,网上的全部都是c.NotebookApp.ip='*',是错误的
5.运行服务
jupyter notebook
root 用户使用
jupyter notebook --allow-root
后台执行:
nohup jupyter notebook --allow-root &
给定端口启动:
jupyter notebook --no-browser --port 8888 --ip=*
给定端口后台启动:
nohup jupyter notebook --no-browser --port 8888 --ip=*
共有 0 条评论