摘要:
登录网站的用户名密码数据库是不会以明文密码进行存储的,简单的,可以通过摘要算法得到一个长度固定的数据块。 1、摘要算法格式: import hashlib #导入hashlib模块 md = hashlib.md5() #获取一个md5加密算法对象md.update('how to use md5 阅读全文
摘要:
def log_path(): import offlinerl log_path = os.path.abspath(os.path.join(offlinerl.__file__,"../../","offlinerl_tmp")) create_dir(log_path) return log 阅读全文
摘要:
from collections import OrderedDictdel_attr = ["function", "module"]def parse_config(cfg_module): args = [ i for i in dir(cfg_module) if not i.startsw 阅读全文
摘要:
Description Python string method startswith() checks whether string starts with str, optionally restricting the matching with the given indices start 阅读全文
摘要:
dir() is a powerful inbuilt function in Python3, which returns list of the attributes and methods of any object (say functions , modules, strings, lis 阅读全文
摘要:
It's easy , just enter "pwd " in the terminal. 阅读全文
摘要:
python3 how to get the elements of the dict.keys() and dict.values() Python 3 mydict = {'a': 'one', 'b': 'two', 'c': 'three'} mykeys = [*mydict] #list 阅读全文
摘要:
1.安装Mujoco,与在本地Ubuntu上安装类似。 2.当测试时,如下:(可能需要下载mjkey.txt到mujoco200,mujoco200/bin) 3. 安装mujoco_py: pip install mujoco_py==2.0.2.10 4. 当测试时出现: 5. 下载mjkey. 阅读全文
摘要:
1. 下载安装包: https://www.anaconda.com/products/distribution#Downloads 通过 scp ~/Downloads/ g8: ~/ 把下载在本地的安装包上传到服务器g8节点 2. 在当前路径下,执行命令: bash Anaconda3-2021 阅读全文
摘要:
怀疑是因为安装了和cuda不匹配的torch 导致的,本地的ubuntu是cuda 11.0,安装了cuda 11.3. 只能删除虚拟环境,重新安装,根据提示逐步安装 pip install torch 阅读全文