我刚升级到14.04,当我尝试升级时,我得到:
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
linux-generic : Depends: linux-image-generic (= 3.13.0.55.62)
我试着在python3经营熊猫。但我得到了以下错误。
user@client3:~/smith/Python$ python3
Python 3.7.0 (default, Oct 3 2018, 21:22:25)
[GCC 5.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas as pd
Traceback (most recent call last
对于我正在构建的一个小工具,我需要读取一个config/ini文件。这本身没有问题,但我正在尝试弄清楚如何在Linux和Windows上正确/最好地做到这一点。
在Linux下,该文件的位置可能是:
- /etc
- the install directory of the jars/files
在Windows下,我不知道/etc的等价物是什么(对不起,我所有的工作都在Linux上完成)。
有没有人知道一个组件,它会在公共文件位置搜索我可以在代码中重用的config/ini文件?
非常感谢R