当前位置:网站首页>关于报错vscode
关于报错vscode
2022-07-30 05:45:00 【没事下辈子小心点】
系列文章目录
提示:分类总结报错提示
一、antd类
1、安装问题
PS C:\Users\apple\Desktop\531ts> npx create-umi myapp
? Select the boilerplate type ant-design-pro
? Which language do you want to use? TypeScript
? Do you need all the blocks or a simple scaffold? simple
Cloning into 'myapp'...
fatal: unable to access 'https://gitee.com/ant-design/ant-design-pro/': Proxy CONNECT aborted
events.js:292
throw er; // Unhandled 'error' event
^
Error: Command failed: git clone https://gitee.com/ant-design/ant-design-pro --depth=1 myapp
null
null
at makeError (C:\Users\apple\AppData\Local\npm-cache\_npx\1789ec8a15edf54c\node_modules\execa\index.js:174:9)
at C:\Users\apple\AppData\Local\npm-cache\_npx\1789ec8a15edf54c\node_modules\execa\index.js:278:16
at processTicksAndRejections (internal/process/task_queues.js:93:5)
at async AntDesignProGenerator.writing (C:\Users\apple\AppData\Local\npm-cache\_npx\1789ec8a15edf54c\node_modules\create-umi\lib\generators\ant-design-pro\index.js:107:5)
Emitted 'error' event on AntDesignProGenerator instance at:
at Immediate.<anonymous> (C:\Users\apple\AppData\Local\npm-cache\_npx\1789ec8a15edf54c\node_modules\yeoman-generator\lib\index.js:1022:20)
at processImmediate (internal/timers.js:461:21) {
code: 128,
stdout: null,
stderr: null,
failed: true,
signal: null,
cmd: 'git clone https://gitee.com/ant-design/ant-design-pro --depth=1 myapp',
timedOut: false,
killed: false
}
这类问题是网络问题,可以用v,也可以换加速,我是用V,解决可以参考这个文章
二、使用步骤
1.引入库
代码如下(示例):
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
2.读入数据
代码如下(示例):
data = pd.read_csv(
'https://labfile.oss.aliyuncs.com/courses/1283/adult.data.csv')
print(data.head())
该处使用的url网络请求的数据。
总结
提示:这里对文章进行总结:
例如:以上就是今天要讲的内容,本文仅仅简单介绍了pandas的使用,而pandas提供了大量能使我们快速便捷地处理数据的函数和方法。
边栏推荐
- 【江科大自化协stm32F103c8t6】笔记之【入门32单片机及EXTI外部中断初始化参数配置】
- 用pop3收取gmail的邮件
- 无人机生态环境监测、图像处理与GIS数据分析
- Flink-stream/batch/OLAP integrated to get Flink engine
- 海量遥感数据处理与GEE云计算技术应用【基础、进阶】
- Receive emails from gmail with pop3
- jvm之方法区
- 遥感、GIS和GPS技术在水文、气象、灾害、生态、环境及卫生等应用
- Through the bit operations to convert the characters are case sensitive
- BLDC电机应用持续火爆,“网红神器”筋膜枪前景几何?
猜你喜欢
随机推荐
QT串口动态实时显示大量数据波形曲线(五)========“最终完美解决版”
MATLAB怎么在图像中显示nii文件切片信息?
DeepLearing4j's deep learning Yolo Tiny realizes target detection
高交会重要活动之一|2020中国硬件创新大赛全国总决赛
【Qingdao Station】High-level application of SWAT model and modeling of areas without data, uncertainty analysis and climate change, improvement of land use surface pollution impact model and case analy
Generalized Focal Loss 论文阅读笔记
Insertion Sort in Classic Sort
无人机生态环境监测、图像处理与GIS数据分析
1.03 original Acegi security mechanism
Kaggle-M5
Analysis of domestic data exchange platforms
QT连载2:基于QT和STM32H750的LORA试验平台(1)
Flink-stream/batch/OLAP integrated to get Flink engine
Atmospheric particulate matter PMF source analysis
写在公众号之前——QT,ARM,DSP,单片机,电力电子与传动!
边境的悍匪—机器学习实战:第十章 Keras人工神经网络简介
QT连载3:基于QT和STM32H750的LORA试验平台(2)
遥感、GIS和GPS技术在水文、气象、灾害、生态、环境及卫生等应用
【江科大自化协stm32F103c8t6】笔记之【入门32单片机及EXTI外部中断初始化参数配置】
常用损失函数(一):Focal Loss









