Linux
dorya
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
cuda10.0 + tf115
https://blog.youkuaiyun.com/wzyaiwl/article/details/107697278转载 2021-05-21 10:44:29 · 189 阅读 · 0 评论 -
jupyter notebook后台运行
1.后台运行 nohup jupyter notebook --allow-root > jupyter.log 2>&1 & 2.ssh连接 ssh -N -f -L localhost:8888:127.0.0.1:8888 user@服务器端ip 3.结束进程 ps -a 找到jupyter进程id kill -9 pid原创 2021-05-20 09:54:53 · 2154 阅读 · 0 评论 -
将conda环境添加到jupyter notebook中
在jupyter notebook中添加conda环境 source activate 虚拟环境名 conda install ipykernel python -m ipykernel install --user --name 虚拟环境名 --display-name "自定义名字“ jupyter kernelspec list #查看当前notebook中所具有的kernel 删除conda环境 jupyter kernelspec remove 'python myenv' #删除配置转载 2021-05-18 21:12:06 · 320 阅读 · 0 评论
分享