forked from myhhub/stock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path远程服务器.txt
73 lines (35 loc) · 1.28 KB
/
远程服务器.txt
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
修改python 3.11
https://blog.csdn.net/weixin_49503250/article/details/130294997
https://blog.51cto.com/u_16099330/7483408
python版本修改
sudo apt-get install python3.11-dev
# 重新安装python3-apt
sudo apt remove python3-apt
sudo apt autoremove # 此命令慎用,可以先不输入它,看能否解决问题
sudo apt autoclean
sudo apt install python3-apt
https://blog.csdn.net/StillOnMyWay/article/details/114492675
mysql:
sudo vim /etc/mysql/my.cnf
mysql -u root -p 7338701
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '7338701';
FLUSH PRIVILEGES;
use mysql;
select Host,User from user;
update user set host = '%' where user ='root';
flush privileges;
update mysql.user set authentication_string=password('7338701') where user='root' and Host='localhost';
https://zhuanlan.zhihu.com/p/632844320
service mysql restart
https://www.dbs724.com/223723.html
ta-lib
https://cloudstrata.io/install-ta-lib-on-ubuntu-server/
https://blog.csdn.net/hampeter/article/details/113799342
https://zhuanlan.zhihu.com/p/654299358
chmod +x
sudo python3 -m pip install tornado
python3 -m pip install --upgrade pip
pip install bokeh==3.2.1
https://www.debugpoint.com/install-python-3-11-ubuntu/
安装python 3.11
https://blog.51cto.com/u_16175470/6904997