首页 > 其他分享 >habitat install

habitat install

时间:2024-05-30 20:45:37浏览次数:18  
标签:git install habitat conda https pip

ubuntu装完后要先设置网络!!!!!!!!!

clone our repo

git clone https://github.com/XinyuSun/FGPrompt.git
cd FGPrompt
上面这一步没成功,直接手动下载了github包

clone habitat-lab code

git submodule init
git submodule update
上面这一步没使用

create conda env

conda create -n fgprompt python=3.8
这一步在创建虚拟环境时老是报错:http connection 303 error
conda换源成清华源,注意不是https而是http!!!

install habitat-sim

conda install habitat-sim=0.2.2 withbullet headless -c conda-forge -c aihabitat
这里去anaconda.org上搜索habitat-sim,点进去下载linux版本的.tar.g2文件,conda install --use-local 库名称.tar.g2

install pytorch1.11

pip install torch1.11.0+cu113 torchvision0.12.0+cu113 -f https://download.pytorch.org/whl/torch_stable.html

这里在FGPrompt文件夹里面的habitat-lab文件夹里面打开终端!!!
git init
git checkout 1f7cfbdd3debc825f1f2fd4b9e1a8d6d4bc9bfc7
pip install -e habitat-lab
pip install -e habitat-baselines

标签:git,install,habitat,conda,https,pip
From: https://www.cnblogs.com/torrentgz/p/18223177

相关文章

  • vcpkg在vs2022下integrate install之后仍找不到第三方库的解决方案
    首先是vcpkg的安装,许多其他帖子都有,从github上拉取下来之后运行bootstrap-vcpkg.bat即可。不再赘述。接下来是使用部分,假设需要安装pcl库。在vs2022的开发者powershell中输入vcpkginstallpcl此时下载完成,成功拉取了pcl包。接下来按照教程所说为在vs2022的开发者powershell......
  • pip install . 和 pip install -e . 的区别
    pipinstall.和pipinstall-e.都用于将当前目录下的项目安装为Python包,但它们之间有一些区别。pipinstall.:这个命令会将项目打包并安装在Python环境中,项目的文件将被复制到Python的site-packages目录中。安装后,您可以在Python中导入该包并使用其中的功能。这种方式适......
  • webstrom中npm install err 问题
    npmERR!pathD:\gitcode\yoyochatroom1.0\YoYo_Chat_Room/package.json这里的package.json终端显示没有路径,因为需项目具有package.json的文件中开启终端那么我们在设置中找到设置找到终端启动目录就可以了。如果还有问题可以在排卵期聊。......
  • Inno Setup Dependency Installer 安装包 运行环境安装
    Downloadandinstallanydependencysuchas.NET,VisualC++orSQLServerduringyourapplication'sinstallation!Inthisarticle,youwillseeinstallation,usage,integration,details,anddependenciesofInnoSetupDependencyInstaller.Downlo......
  • Windows pyinstaller wxPython pyecharts无法正常显示问题
    WindowspyinstallerwxPythonpyecharts无法正常显示问题最近遇到一个pyinstaller打包wxPythonpyecharts无法显示的问题,pyecharts生成的html页面显示空白。未使用pyinstaller打包时显示正常。问题原因WebViewBackendDefault=b''WebViewBackendEdge=b'wxWebViewEdge'Web......
  • pyinstaller 打包无窗口python http.server无法启动
    最近在写一个简单的文件服务器用来访问静态文件,遇到在pyinstaller无窗口模式下无法启动的问题,记录一下解决方案。原因:http.server需要将记录输出到窗口,而pyinstaller打包无窗口模式没有地方输出classBaseHTTPRequestHandler(socketserver.StreamRequestHandler):.........
  • How to Install LibreOffice on Ubuntu
    HowtoInstallLibreOfficeonUbuntuBYHAROONJAVEDPUBLISHEDDEC30,2023 LookingforasimplealternativetoMicrosoftOfficeonLinux?StartbyinstallingLibreOffice.CorbinDavenport/TheDocumentFoundationQuickLinksWhatIsLibreOffice?......
  • Docker系列---【/usr/bin/docker-current: Error response from daemon: shim error:
    1.报错信息dockerrun创建新容器时报错/usr/bin/docker-current:Errorresponsefromdaemon:shimerror:docker-runcnotinstalledonsystem.2.解决方案[root@localhost~]#cd/usr/libexec/docker/[root@localhost~]#sudoln-sdocker-runc-currentdocker-runc......
  • 问题2:yum install pstree无法安装
    解决办法1.查找pstree命令在哪个包内,执行命令:yum provideslsof2.找到对应的包名:执行安装命令:yuminstallpsmisc3.结果再次执行pstree查看命令执行情况  ......
  • vue搭建脚手架 出现问题Command vue init requires a global addon to be installed.
    使用vue-cli脚手架命令vueinitwebpackmy-App创建项目回车时显示Commandvueinitrequiresa global addontobeinstalled.Pleaserun yarn globaladd@vue/cli-initandtryagain. 解决方法:npminstall-g@vue/cli-init 然后创建项目,正常。 ......