Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #10967 > unrolled thread
| Started by | "守株待兔" <1248283536@qq.com> |
|---|---|
| First post | 2011-08-06 16:27 +0800 |
| Last post | 2011-08-06 19:17 +1000 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.python
install editra "守株待兔" <1248283536@qq.com> - 2011-08-06 16:27 +0800
Re: install editra Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-08-06 19:17 +1000
| From | "守株待兔" <1248283536@qq.com> |
|---|---|
| Date | 2011-08-06 16:27 +0800 |
| Subject | install editra |
| Message-ID | <mailman.1969.1312619245.1164.python-list@python.org> |
[Multipart message — attachments visible in raw view] — view raw
sudo python /opt/Editra-0.6.58/setup.py install
Traceback (most recent call last):
File "/opt/Editra-0.6.58/setup.py", line 639, in <module>
DoSourcePackage()
File "/opt/Editra-0.6.58/setup.py", line 498, in DoSourcePackage
DATA = GenerateSrcPackageFiles()
File "/opt/Editra-0.6.58/setup.py", line 190, in GenerateSrcPackageFiles
for loc_dir in os.listdir("locale"):
OSError: [Errno 2] No such file or directory: 'locale'
how to solve it??
[toc] | [next] | [standalone]
| From | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| Date | 2011-08-06 19:17 +1000 |
| Message-ID | <4e3d06c6$0$29997$c3e8da3$5496439d@news.astraweb.com> |
| In reply to | #10967 |
守株待兔 wrote:
> sudo python /opt/Editra-0.6.58/setup.py install
> Traceback (most recent call last):
> File "/opt/Editra-0.6.58/setup.py", line 639, in <module>
> DoSourcePackage()
> File "/opt/Editra-0.6.58/setup.py", line 498, in DoSourcePackage
> DATA = GenerateSrcPackageFiles()
> File "/opt/Editra-0.6.58/setup.py", line 190, in GenerateSrcPackageFiles
> for loc_dir in os.listdir("locale"):
> OSError: [Errno 2] No such file or directory: 'locale'
>
> how to solve it??
Try:
cd /opt/Editra-0.6.58/
sudo python setup.py install
and if that doesn't work, try asking on an Editra mailing list.
--
Steven
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web