shell 在ubuntu中打开spyder

dffbzjpn  于 2022-11-16  发布在  Shell
关注(0)|答案(7)|浏览(200)

我想在ubuntu中打开spyder(Python IDE)。
通常我会在shell中编写“spyder”,它会打开spyder IDE。
现在,当我在shell中编写spyder时,它只是新的行,什么也没有发生(类似于按“enter”)。
---我怎样才能拿回我的spyder?
编辑-我没有得到错误,它只是跳到下一行。

j2datikz

j2datikz1#

如果输入“spyder”不起作用,你可能想尝试输入“spyder3”,以防你安装了spyder3版本。
为了通过pip安装spyder(我的python版本是3.6.2),我使用了:

pip install spyder

然后,我不得不安装另一个软件包:

pip install PyQtWebEngine

最后,为了打开Spyder窗口,我在终端上输入:

spyder3
ctehm74n

ctehm74n2#

你可能只需要更新spyder。
如果您没有使用anaconda:

pip install --update spyder

或者,如果你是在Python:

conda update spyder

我遇到了与您相同的问题,命令行中也显示了一条消息:

Spyder is already running. If you want to open a new 
instance, please pass to it the --new-instance option

上面的更新允许我从命令行打开spyder。

a8jjtwal

a8jjtwal3#

我也遇到了这个问题,并找到了this post on it in an askubuntu forum。它建议使用sudo apt-get purge spyder删除任何有问题的配置文件,然后重新安装sudo apt-get install spyder。我发现它起作用了,spyder在文本编辑器上重新打开了我以前的文件。

hc8w905p

hc8w905p4#

在Ubuntu中,只需转到您,

cd home/<your account>

然后转到.spyder2文件夹

cd spyder2

应该能让你到那里
在终端中,键入lals不显示隐藏文件)并使用,

rm -f spyder.lock

以便删去

2g32fytz

2g32fytz5#

安装spyder的简单方法是:

sudo apt install spyder
lnvxswe2

lnvxswe26#

现在卸载Spyder并执行以下操作:

#first install spyder
sudo apt install spyder

#updata your conda
conda update anaconda

#updata spyder
conda update spyder

#then write this and wait
spyder

使用此链接,或者如果您没有conda,请使用此linl=k

ttcibm8c

ttcibm8c7#

要在bash控制台中启动spyder,只需输入:

spyder .

bash控制台中。

相关问题