
环境配置
YahamaTarGe
这个作者很懒,什么都没留下…
展开
-
Jetson TX2 及 Xavier 安装Pillow
用sdkmanager刷机后安装Pillow之前需要先安装一些依赖库否则会出现以下错误Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-mxjex_tv/Pillow/setup.py';f=getattr(tokenize, 'open', open)(__file__)...原创 2019-11-13 14:49:25 · 1300 阅读 · 0 评论 -
Atom python 插件
autocomplete-paths 路径自动补全autocomplete-python-jedi python 自动补全file-icons 美化左侧图标 Hydrogen 内置jupyter notebook minimap 代码小地图platformio-ide-terminal 在界面下方添加终端atom-python-run 按f5可以执行你的脚本,但是...原创 2019-04-16 11:08:36 · 654 阅读 · 0 评论 -
在Windows下使用make命令
1.下载MinGW下载地址2.安装运行 mingw-get-setup.exe 选择默认路径全部勾选点击Apply开始下载安装3.配置环境将C:\MinGW\bin路径添加到环境变量Path下新建将C:\MinGW\bin路径下的mingw32-make.exe重命名为make.exe...原创 2019-04-18 15:36:01 · 66604 阅读 · 9 评论 -
windows下安装pycocotools包
windows下安装pycocotools包:pip install pycocotools出错:参考 https://github.com/philferriere/cocoapipip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI...转载 2019-05-16 13:08:46 · 998 阅读 · 0 评论 -
2019 Beyond Compare3 密钥
mv1nPlXAywBDCdhxFc9QOVv6TBcQHLAXBQUAKTh3ie4fqSEOnWrPsnVkF yt0wAkJHweoExRJWWVwwCniKNROSdJzJXE6YVapYW7f+tRRXRFI4yn4Nj jZ0RiiqGRCTVzwComUcXB-eiFWRBY6JpSsCNkmIxL5KsRCo442djHhTZE原创 2019-05-17 17:05:16 · 10533 阅读 · 1 评论 -
Ubuntu安装RTX2080显卡驱动
Ubuntu安装RTX2080显卡驱动安装RTX2080显卡驱动#近日新购了一台DELL服务器,用于TensorFlow,由于显卡是另加的,需要安装显卡驱动。服务器配置#服务器型号:DELL PowerEdge R730CPU:2*Intel(R) Xeon(R) E5-2650 v4内存:8*32G磁盘:2*1.2T,raid 0显卡:2*Nvidia RTX2080系统:...转载 2019-06-24 21:10:38 · 2951 阅读 · 0 评论 -
ImportError: DLL load failed: 找不到指定的模块。
下载 Visual C++ Redistributable for Visual Studio 2015安装后重新执行 pip install原创 2019-09-09 17:24:06 · 522 阅读 · 0 评论 -
vs2015 快速定位一个函数或者变量 ctrl+鼠标左键
工具–>扩展和更新–>联机–>Visual Studio 库–>右侧搜索选择“最常用” 找到GO TO DEFINITION这个插件下载安装,重启。原创 2019-09-10 21:04:44 · 7223 阅读 · 1 评论 -
tx2 mxnet wh安装 ImportError: libcblas.so.3: cannot open shared object file: No such file or directory
sudo apt-get install libatlas-base-dev原创 2019-09-26 16:21:24 · 1710 阅读 · 0 评论 -
windows下pycocotools的安装
pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI参考:https://github.com/philferriere/cocoapi原创 2019-04-10 18:53:39 · 293 阅读 · 0 评论 -
anaconda 配置国内镜像加速
配置清华conda镜像conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/配置清华PyPI镜像(如无法运行,将...原创 2019-03-22 21:20:04 · 3243 阅读 · 0 评论 -
Annaconda + Pycharm 安装步骤
https://www.cnblogs.com/yuxuefeng/articles/9235431.html转载 2019-03-13 17:35:40 · 2384 阅读 · 0 评论 -
PyTorch 安装命令合集
Linux使用 conda以下命令适用于 Python 2.7 - 3.7。CPU 版本:conda install pytorch-cpu torchvision-cpu -c pytorchCUDA 8:conda install pytorch torchvision cuda80 -c pytorchCUDA 9.0:conda install pytorch torchv...转载 2019-02-02 14:10:47 · 2468 阅读 · 0 评论 -
python 清华源
https://pypi.tuna.tsinghua.edu.cn/simple/[global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple[install]trusted-host = pypi.douban.compip.ini转载 2019-01-28 21:21:46 · 4669 阅读 · 0 评论 -
pycharm 自动添加头文件
File–settings–Editor–File and Code Templates–Python Script#!/usr/bin/env python#-* -coding:utf-8 -*-#@Time:$ {DATE} ${TIME}#@Author: Name原创 2019-01-29 11:30:00 · 469 阅读 · 0 评论 -
How to Capture and Display Camera Video with Python on Jetson TX2
https://jkjung-avt.github.io/tx2-camera-with-python/使用TX2上带的解码模块NVDEC实现硬解码转载 2019-02-21 13:33:55 · 212 阅读 · 0 评论 -
Linux 查看cuda cudnn 版本
cuda 版本cat /usr/local/cuda/version.txtcudnn 版本cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2转载 2019-02-27 15:27:09 · 351 阅读 · 0 评论 -
ffmpeg 安装
转载自 https://www.cnblogs.com/freeweb/p/6897907.htmlLinux下安装ffmpeg ffmpeg是一个很强大的音视频处理工具,官网是:http://ffmpeg.org/ 官网介绍ffmpeg是:一个完整的、跨平台的解决方案,可以记录、转换和传输音频和视频。ffmpeg既可以播放视频,也提供命令行工具来处理视频,另外还有强大的视频处理库用于开发...转载 2019-02-19 12:13:06 · 643 阅读 · 0 评论 -
ffmpeg 更新
https://www.cnblogs.com/thatsit/p/6487089.html转载 2019-02-19 14:15:09 · 3042 阅读 · 0 评论 -
Python windows系统下 资源安装包
https://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv转载 2019-02-20 11:12:49 · 357 阅读 · 0 评论 -
ffmpeg NVIDIA 加速
https://blog.youkuaiyun.com/hiudawn/article/details/82261498转载 2019-02-20 16:12:38 · 617 阅读 · 0 评论 -
装机 + 环境配置笔记
一:装机CPU 8700K主板 华擎 Z390 Extreme 4显卡 NVIDIA TITAN XP Collection’s Edition主硬盘 Samsung 970 Pro 500G副盘 Samsung 860 QVO 1T内存 海盗船复仇者 DDR4 3000 8G*2散热 大镰刀千石船电源 EVGA 850G3机箱 先马黑洞3二:环境搭建win10启动盘制...原创 2019-03-14 10:04:11 · 343 阅读 · 0 评论 -
windows 下 tensorrt 下载 及c++测试
下载tensorrt并解压到D:\Environment:https://developer.nvidia.com/nvidia-tensorrt-5x-download添加环境变量:D:\Environment\TensorRT-5.1.2.2\lib复制lib下dll 至 C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v9.0\bi...原创 2019-03-20 13:57:13 · 3435 阅读 · 0 评论