anaconda里面安装datatime库时出现PackagesNotFoundError: The following packages are not available from current channels:
时间: 2023-09-29 08:03:08 浏览: 171
anaconda安装pytorch时报错PackagesNotFoundError: The following packages are not available from current cha
5星 · 资源好评率100%
这个问题可能是因为datatime库不是一个真正的Python库,而是Python的内置模块,所以无法在anaconda库中安装。你可以直接在Python代码中导入datatime模块,例如:
```python
import datetime
today = datetime.date.today()
print(today)
```
这将输出当前日期。如果你需要其他datatime模块中的函数和类,可以通过导入相应的模块来使用。
阅读全文