1 2 3
| wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py39_4.9.2-Linux-x86_64.sh
bash Miniconda2-latest-Linux-x86_64.sh
|
1 2 3 4 5 6 7 8 9
| auto_activate_base: false channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ - defaults show_channel_urls: true ssl_verify: false report_errors: false
|
1
| conda install jupyterlab
|
1
| jupyter lab --generate-config
|
1 2 3 4 5
| { "ServerApp": { "password": "sha1:****************91db429e" } }
|
有可能哈希值长下面这样,一样的可以用的。
1
| "password": "argon2:$argon2id$v=19$m=10240,t=10,p=8$X/O4IXwqqvVVjPAJi
|
1 2 3 4 5 6 7 8 9 10
| vim ~/.jupyter/jupyter_lab_config.py
c.NotebookApp.ip = '*' c.NotebookApp.allow_root = True c.NotebookApp.open_browser = False c.NotebookApp.port = 9999 c.NotebookApp.password = u'sha1:****************b429e' c.ContentsManager.root_dir = '/srv/jupyterlab/' c.ServerApp.allow_remote_access = True
|
1
| nohup jupyter lab --allow-root > jupyter.log 2>&1 &
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| # 创建文件/etc/systemd/system/jupyterlab.service,写入下面的内容 [Unit] Description=Jupyter Notebook After=network.target [Service] Type=simple ExecStart=/home/lixiang/miniconda3/bin/jupyter-lab --config=/home/lixiang/.jupyter/jupyter_lab_config.py --no-browser User=lixiang Group=lixiang WorkingDirectory=/home/lixiang/jupyterlab/ Restart=always RestartSec=10 [Install] WantedBy=multi-user.target
|
1
| sudo apt-get install julia
|
1 2 3
| using Pkg Pkg.add("IJulia") Pkg.build("IJulia")
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| server { server_name xxxx; listen 443 ssl;
ssl_certificate /etc/nginx/sites-available/cert/xxxx_bundle.crt; ssl_certificate_key /etc/nginx/sites-available/cert/xxxx.key; ssl_session_timeout 5m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE; ssl_prefer_server_ciphers on;
location / { proxy_pass http://localhost:9999; proxy_redirect http://localhost:9999/ $scheme://$host/; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_ssl_verify off; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
|
1 2 3 4 5
| install.packages(c('repr', 'IRdisplay', 'evaluate', 'crayon', 'pbdZMQ', 'devtools', 'uuid', 'digest'))
install.packages('IRkernel')
IRkernel::installspec(user = FALSE)
|
1 2 3
| curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
|
💌lixiang117423@foxmail.com
💌lixiang117423@gmail.com