前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >pycharm如何创建虚拟环境_pycharm安装后无解释器

pycharm如何创建虚拟环境_pycharm安装后无解释器

作者头像
全栈程序员站长
发布2022-09-27 10:40:07
4250
发布2022-09-27 10:40:07
举报
文章被收录于专栏:全栈程序员必看

大家好,又见面了,我是你们的朋友全栈君。

Installation

1) Environment

  • Python 3.x
  • Pytorch 1.1 or higher
  • CUDA 9.2 or higher
  • gcc-5.4 or higher

Create a conda virtual environment and activate it.

代码语言:javascript
复制
conda create -n hais python=3.7
conda activate hais

2) Clone the repository.

代码语言:javascript
复制
git clone https://github.com/hustvl/HAIS.git --recursive

3) Install the requirements.

代码语言:javascript
复制
cd HAIS
pip install -r requirements.txt
conda install -c bioconda google-sparsehash 

4) Install spconv

  • Verify the version of spconv. spconv 1.0, compatible with CUDA < 11 and pytorch < 1.5, is already recursively cloned in HAIS/lib/spconv in step 2) by default. For higher version CUDA and pytorch, spconv 1.2 is suggested. Replace HAIS/lib/spconv with this fork of spconv.
代码语言:javascript
复制
git clone https://github.com/outsidercsy/spconv.git --recursive
代码语言:javascript
复制
  Note:  In the provided spconv 1.0 and 1.2, spconv\spconv\functional.py is modified to make grad_output contiguous. Make sure you use the modified spconv but not the original one. Or there would be some bugs of optimization.
  • Install the dependent libraries.
代码语言:javascript
复制
conda install libboost
conda install -c daleydeng gcc-5 # (optional, install gcc-5.4 in conda env)
  • Compile the spconv library.
代码语言:javascript
复制
cd HAIS/lib/spconv
python setup.py bdist_wheel
  • Intall the generated .whl file.
代码语言:javascript
复制
cd HAIS/lib/spconv/dist
pip install {wheel_file_name}.whl

5) Compile the external C++ and CUDA ops.

代码语言:javascript
复制
cd HAIS/lib/hais_ops
export CPLUS_INCLUDE_PATH={conda_env_path}/hais/include:$CPLUS_INCLUDE_PATH
python setup.py build_ext develop

{conda_env_path} is the location of the created conda environment, e.g., /anaconda3/envs.

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/175111.html原文链接:https://javaforall.cn

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Installation
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档