Skip to content

Commit

Permalink
data
Browse files Browse the repository at this point in the history
  • Loading branch information
deipss committed May 11, 2024
1 parent 4b22311 commit b4c1fa6
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
15 changes: 15 additions & 0 deletions docs/AI/-AI.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: default
title: AI
nav_order: 1025
has_children: true
permalink: docs/AI
---

```text
_|_| _|_|_|
_| _| _|
_|_|_|_| _|
_| _| _|
_| _| _|_|_|
```
15 changes: 13 additions & 2 deletions docs/command/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ https://blog.csdn.net/u014682691/article/details/80605201

```shell
conda create -n py36 python=3.6
conda create -n py310 python=3.10.14
# 显示当前的环境
conda info -e
conda env list
Expand All @@ -173,11 +174,12 @@ deactivate

conda create [env_name]
source activate py36
source activate py310
source deactivate


```
## jupter安装与远程登陆
## jupyter安装与远程登陆
- 远程登陆参考文档 https://www.jianshu.com/p/8fc3cd032d3c
```shell

Expand All @@ -187,9 +189,18 @@ vim /home/deipss/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*'
c.NotebookApp.password = u'argon2:$argon2id$v=19$m=10240,t=10,p=8$VH3vhkEL5tQMKg6FWYWTeQ$9U2v6D8llgrrEIeiwAqiew'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
c.NotebookApp.port =7888 #可自行指定一个端口, 访问时使用该端口

jupyter notebook

```

## comfyUI

### 后台安装一些pip的包
- nohup sh -c 'pip install -r /home/deipss/jupyter_files/ComfyUI/requirements.txt' > runoob.log 2>&1 &


### 3.1. 参考资料

- [https://blog.csdn.net/CosmosHua/article/details/76644029](https://blog.csdn.net/CosmosHua/article/details/76644029)
Expand Down
3 changes: 3 additions & 0 deletions docs/command/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,9 @@ nohup /root/runoob.sh > runoob.log 2>&1 &
# 0 – stdin (standard input,标准输入)
# 1 – stdout (standard output,标准输出)
# 2 – stderr (standard error,标准错误输出)

nohup sh -c 'pip install -r /home/deipss/jupyter_files/ComfyUI/requirements.txt' > runoob.log 2>&1 &
sh -c 相当于把后面一个字符串,当作一个sh命令执行
```


Expand Down
1 change: 1 addition & 0 deletions docs/test/测试面试.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ parent: Test
# 压测场景设计



0 comments on commit b4c1fa6

Please sign in to comment.