Ethical.Hacking.2021.10:PHISHING AND DEEPFAKES(2)

本文介绍如何执行邮件服务器的DNS查询,并通过示例展示如何连接到SMTP服务器。此外,还详细介绍了在遇到PyTorch无法使用GPU的问题时的解决方法,包括如何检查CUDA环境及安装兼容版本的PyTorch。
摘要由CSDN通过智能技术生成

接:

Ethical.Hacking.2021.10:PHISHING AND DEEPFAKES_lm19770429的专栏-CSDN博客Performing a DNS Lookup of a Mail Serverexam:dig mx gmail.coman SMTP server that accepts a connection on port 25.Use netcat on the Kali Linux virtual machine to connect to port 25 on that IP address by running the following command:https://blog.csdn.net/lm19770429/article/details/121842387

代码调试的坑:

在demo.py中,关于yaml.load(),由于版本升级安全性考虑,需要传入Loader=的位置参数

可用一下语句代替: yaml.safe_load(f)

def load_checkpoints(config_path, checkpoint_path, cpu=False):

    with open(config_path) as f:
        config = yaml.safe_load(f)

关于错误:

AssertionError: Torch not compiled with CUDA enableds

输入一下代码检查:

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

如果输出的结果是False,那么说明当前的Pytorch版本无法使用显卡。

查看CUDA版本信息:

 nvcc --version

CUDA版本下载地址:

CUDA 工具包 | NVIDIA Developerhttps://developer.nvidia.cn/zh-cn/cuda-toolkitCUDA Toolkit 11.6 Downloads | NVIDIA Developerhttps://developer.nvidia.com/cuda-downloadsCUDA Toolkit Archive | NVIDIA DeveloperPrevious releases of the CUDA Toolkit, GPU Computing SDK, documentation and developer drivers can be found using the links below. Please select the release you want from the list below, and be sure to check www.nvidia.com/drivers for more recent production drivers appropriate for your hardware configuration.https://developer.nvidia.com/cuda-toolkit-archive

根据自己的CUDA版本在Pytorch官网查看并安装可用的版本,参考链接如下:

https://download.pytorch.org/whl/torch_stable.htmlhttps://download.pytorch.org/whl/torch_stable.htmlhttps://download.pytorch.org/whl/cu102/torch_stable.htmlhttps://download.pytorch.org/whl/cu102/torch_stable.html


 

PyTorch的下载,保证版本一致性

Start Locally | PyTorch An open source machine learning framework that accelerates the path from research prototyping to production deployment.https://pytorch.org/get-started/locally/

conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值