07 2023 档案
摘要:* nginx安装 ```shell sudo apt-get install nginx ``` * nginx 简单配置 ```shell vim /etc/nginx/sites-available/default server { listen 80 default_server; list
阅读全文
摘要:1:查看当前安装驱动版本信息  driver version: 525.116.03 cuda version: 12
阅读全文
摘要:###问题提示: ` NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and runn
阅读全文
摘要:###结论 ###b = a.copy(): 浅拷贝, a 和 b 是一个独立的对象,但他们的子对象还是指向统一对象(是引用)。 ###b = copy.deepcopy(a): 深拷贝, a 和 b 完全拷贝了父对象及其子对象,两者是完全独立的。 ```python import copy ori
阅读全文
摘要:c++ 学习 1.const 2.class
阅读全文