我刚刚得到一个魔方的未来立方体,并想下载RFCsuite,以便我可以开始规划我自己的项目。我上网了,它给了我这些指示:
安装说明-- Ubuntu安装python包: sudo apt-获取安装imaging串行python-wxgtk2.8如果x64系统安装i386兼容性包: sudo apt安装In 32-libs添加udev规则文件(以避免与modemmanager冲突):sudo sh -c 'echo SUBSYSTEM==\“\”,ATTRS{idVendor}==\“0483”,ATTRS{idProduct}==\“a0a2”,ENV{ID_MM_CANDIDATE}=\"0\“>/etc/udev/rues.d/95-futurocube.Rules‘将用户添加到拨号组以授予对/dev/ttyACM*设备的访问:在某些情况下重新启动x-会话时需要sudo拨号才能更改组(上面)。启动应用程序使用./rubiks-futuro-多维数据集在Ubuntu12.04位上测试,LinuxMint 15: Olivia (x86-64)预期在Ubuntu12.04 32位、Ubuntu12.10 32/64位上工作
我把第一行复制到终端(即sudo apt-get install python ipython python-imaging python-serial python-wxgtk2.8
)。我刚做完这件事,我就意识到我应该等着我的IT老师来帮我。
我用
sudo apt-get remove python ipython python-imaging python-serial python-wxgtk2.8
但是它突然开始删除所有的东西!我杀死了窗口,重新安装了它删除的内容(除了软件中心)。我认为这是好的,但当我重新启动我的笔记本电脑,发射器,开关和菜单栏都不见了!我可以使用tty1访问终端。我能做什么?
发布于 2016-12-18 13:54:29
python
是Ubuntu所需的包。许多Ubuntu组件都是使用python构建的。
我假设您有标准的Ubuntu发行版(Ubuntu),要修复它,请使用以下方法重新安装所有丢失的包:
sudo apt-get install ubuntu-desktop
如果您有不同的版本,请在这里提供所有可用的元包:
~$ apt-cache search .*ubuntu-desktop
ubuntu-desktop - The Ubuntu desktop system
edubuntu-desktop - educational desktop for Ubuntu
kubuntu-desktop - Kubuntu Plasma Desktop/Netbook system
lubuntu-desktop - Lubuntu Desktop environment
qtubuntu-desktop - Qt plugins for Ubuntu Platform API (desktop)
ubuntu-desktop-mir - System compositor for Ubuntu Desktop
xubuntu-desktop - Xubuntu desktop system
https://askubuntu.com/questions/860246
复制