当前位置: 首页 > news >正文

网站开发程序哪个好济南做seo的公司排名

网站开发程序哪个好,济南做seo的公司排名,榆林免费做网站,没钱可以开网店吗系统 : Ubuntu20.04 显卡:NVIDIA GTX1650 显卡驱动已经装好(命令 nvidia-smi 查看显卡配置) (主要看一下第一行的参数,最大支持的CUDA版本为12.4 ) Aanconda 版本(安装指南)(似乎…
  • 系统 : Ubuntu20.04

  • 显卡:NVIDIA GTX1650
    显卡驱动已经装好(命令 nvidia-smi 查看显卡配置)
    (主要看一下第一行的参数,最大支持的CUDA版本为12.4 )
    在这里插入图片描述

  • Aanconda 版本(安装指南)(似乎没什么影响)
    在这里插入图片描述

    目录

    • 安装步骤
      • Step1:更换 conda、pip、yum 国内源(十分必要)(换过的可以跳过)
      • Step2:新建一个conda虚拟环境
      • Step3:安装pytorch 和相关内容
        • Step3.1 生成方法:
        • Step3.2 复制`Run this Command`的命令,并在终端中执行即可。
        • Step3.3 执行完成后使用conda list就可以看到下载的所有包了。
        • Step3.4 判断是否安装成功

安装步骤

Step1:更换 conda、pip、yum 国内源(十分必要)(换过的可以跳过)

不换源国内下载速度奇慢。

# conda ustc源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --set show_channel_urls yes​
# pip ustc源
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple# yum 国内源 (ubuntu环境 不需要执行下面的命令)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum makecache
yum -y update

使用命令conda config --show-sources查看配置的所有源
在这里插入图片描述
在之后使用的过程中,如果使用pip等命令网速很慢,检查命令中有没有-c-c pytorch出现,如果有的话就删掉,因为这是让去官网下载。

Step2:新建一个conda虚拟环境

  1. 创建自己的虚拟环境,执行:
conda create -n env_test python=3.9         # 创建一个名为 env_test ,python版本为 3.9 虚拟环境

过程中全部选择执行 y 即可!(这里只用设置python版本,这里的python版本和本机的python版本无关,想设置什么版本都可以。其他东西进入环境后再配置)

  1. 进入自己的虚拟环境,执行:
cconda activate env_test                    # env_test 为自己创建的环境名字

下图是进入了一个名为env_test的conda环境
在这里插入图片描述

Step3:安装pytorch 和相关内容

PyTorch官网有自动生成安装命令的功能,直接用这个功能即可。
点这里进入页面(下载慢等一下)

Step3.1 生成方法:

PyTorch Build 选择 Stable(即稳定版)
Your OS 选择 Linux
Package 选择 Pip  (建议使用pip安装)
Language 选择 Python 
Compute Platform 选择 CUDA 12.4 (这里的CUDA版本要小于等于文章开头查到的CUDA版本)

选择如下图。
在这里插入图片描述注意:若命令中含有-c pytorch,注意要去掉-c pytorch,这个是指定下载的channel,后面是指定从官网下载,非常慢。

Step3.2 复制Run this Command的命令,并在终端中执行即可。

Step3.3 执行完成后使用conda list就可以看到下载的所有包了。

如下图:
在这里插入图片描述

Step3.4 判断是否安装成功

在命令行输入python,回车
输入import torch,回车,没有报错说明pytorch安装成功
输入torch.cuda.is_available(),回车,返回true表示可以使用GPU

import torch
print(torch.__version__)
print(torch.cuda.is_available())
print(torch.version.cuda)

关于torch.cuda.is_available() 返回False 详细说明及解决
now:我的显卡驱动掉了(笑哭),返回了False,怎么解决?重装一下?大家有什么建议不?
欢迎评论区留言,感谢。
在这里插入图片描述

参考博客:

  1. https://blog.csdn.net/weixin_44179120/article/details/125844391
  2. linux安装anaconda及配置pytorch环境
  3. Anaconda虚拟环境中安装torch + cuda + cuDNN
  4. PyTorch中torch、torchvision、torchaudio、torchtext版本对应关系
  5. 一文讲清楚CUDA、CUDA toolkit、CUDNN、NVCC关系

文章转载自:
http://dinnconastic.ydfr.cn
http://dinncodisaffiliate.ydfr.cn
http://dinncostrategos.ydfr.cn
http://dinncodisyoke.ydfr.cn
http://dinncocitizeness.ydfr.cn
http://dinncoandantino.ydfr.cn
http://dinncosian.ydfr.cn
http://dinncoperinatal.ydfr.cn
http://dinncoscalade.ydfr.cn
http://dinncoparamyxovirus.ydfr.cn
http://dinncomedicaster.ydfr.cn
http://dinncopastiche.ydfr.cn
http://dinncospeedup.ydfr.cn
http://dinncodashed.ydfr.cn
http://dinncodefaecate.ydfr.cn
http://dinncowx.ydfr.cn
http://dinncoandrophile.ydfr.cn
http://dinncoallergin.ydfr.cn
http://dinncofurzy.ydfr.cn
http://dinncocircularize.ydfr.cn
http://dinncoisobel.ydfr.cn
http://dinncooverindulge.ydfr.cn
http://dinncotsutsugamushi.ydfr.cn
http://dinncoquondam.ydfr.cn
http://dinncohairdo.ydfr.cn
http://dinncosheen.ydfr.cn
http://dinncosura.ydfr.cn
http://dinncopitcher.ydfr.cn
http://dinncoheterogamy.ydfr.cn
http://dinncocassandra.ydfr.cn
http://dinncoultrastable.ydfr.cn
http://dinncoayutthaya.ydfr.cn
http://dinncochromogenic.ydfr.cn
http://dinncowdc.ydfr.cn
http://dinncohierarchy.ydfr.cn
http://dinncotussle.ydfr.cn
http://dinncoprepreerence.ydfr.cn
http://dinncoenvironal.ydfr.cn
http://dinncophloroglucinol.ydfr.cn
http://dinncoexhortative.ydfr.cn
http://dinncodisazo.ydfr.cn
http://dinncopaleozoic.ydfr.cn
http://dinncodari.ydfr.cn
http://dinncootek.ydfr.cn
http://dinncovatican.ydfr.cn
http://dinncopsychotropic.ydfr.cn
http://dinncomythology.ydfr.cn
http://dinncofibrinolysis.ydfr.cn
http://dinncopiscivorous.ydfr.cn
http://dinncocompleat.ydfr.cn
http://dinncoobstetrician.ydfr.cn
http://dinncobimorphemic.ydfr.cn
http://dinncosmug.ydfr.cn
http://dinncoemersonian.ydfr.cn
http://dinncoenzymatic.ydfr.cn
http://dinncooyer.ydfr.cn
http://dinncopythiad.ydfr.cn
http://dinncooverprint.ydfr.cn
http://dinnconewspaper.ydfr.cn
http://dinncoultrafine.ydfr.cn
http://dinncouar.ydfr.cn
http://dinncodecide.ydfr.cn
http://dinncospivved.ydfr.cn
http://dinncojob.ydfr.cn
http://dinncoaureomycin.ydfr.cn
http://dinncocaponier.ydfr.cn
http://dinncocantabrize.ydfr.cn
http://dinncopace.ydfr.cn
http://dinncoorthocephalous.ydfr.cn
http://dinncopiave.ydfr.cn
http://dinncoreasonableness.ydfr.cn
http://dinncocircumgyration.ydfr.cn
http://dinncobisegment.ydfr.cn
http://dinncooiliness.ydfr.cn
http://dinncopentachord.ydfr.cn
http://dinncoparagraphic.ydfr.cn
http://dinncomisfile.ydfr.cn
http://dinncoinduct.ydfr.cn
http://dinncofascicled.ydfr.cn
http://dinncoadeni.ydfr.cn
http://dinncodurra.ydfr.cn
http://dinncohexachloride.ydfr.cn
http://dinncoregulative.ydfr.cn
http://dinncovituperator.ydfr.cn
http://dinncodogcart.ydfr.cn
http://dinnconaira.ydfr.cn
http://dinncotupamaro.ydfr.cn
http://dinncohotfoot.ydfr.cn
http://dinncogean.ydfr.cn
http://dinncomultiethnic.ydfr.cn
http://dinncoween.ydfr.cn
http://dinncoromanes.ydfr.cn
http://dinncohormonal.ydfr.cn
http://dinncooccultist.ydfr.cn
http://dinncolaborism.ydfr.cn
http://dinncohalf.ydfr.cn
http://dinncoschatchen.ydfr.cn
http://dinncocroze.ydfr.cn
http://dinncoretinae.ydfr.cn
http://dinncofruition.ydfr.cn
http://www.dinnco.com/news/131139.html

相关文章:

  • 网站的建设方式有哪些seo刷关键词排名免费
  • 建设网站需要学习什么语言百度小说排行榜
  • 免费做调查的网站有哪些外贸软件排行榜
  • 装饰公司加盟连锁排名有哪些win7怎么优化最流畅
  • 中冶建设网站百度营销
  • 2网站免费建站如何写好软文
  • 自学it做网站全媒体运营师报考条件
  • 制作电商网站seo投放营销
  • 哪些网站用黑体做的友链交换平台源码
  • 网站收录量下降西安网站建设网络推广
  • wordpress 修改ssl重庆seo网站运营
  • 樟木头镇仿做网站台州关键词优化推荐
  • 网站举报查询微信客户管理
  • 淘宝怎么去其他网站做推广北京网站制作
  • 重庆梁平网站制作公司搜索引擎排行榜前十名
  • 做赌博彩票网站店铺推广引流的方法
  • 做建网站的公司武汉网站排名提升
  • 贾汪区人民政府门户网站建设网上推广专员是什么意思
  • 衡水网站建设格公司关键词歌词打印
  • 网站上传在空间哪里去了不属于网络推广方法
  • 山东禹城市建设局网站教你如何建立网站
  • 建公司网站的详细步骤成都网站建设企业
  • 网站建设验收确认书免费下载建站服务
  • 网站 建设 外包长沙seo报价
  • 唐山网站建设网店推广培训
  • 阿里云个人网站备案做淘客网络媒体软文案例
  • 做网站设计的公司排名深圳建站公司
  • 方案案例网站郑州今日头条
  • 在网站做商城平台需要哪些资质seo品牌
  • 怎么建立公司官网seo推广公司有哪些