UnicodeDecodeError: ตัวแปลงสัญญาณ 'ascii' ไม่สามารถถอดรหัสไบต์ 0x * ในตำแหน่ง *: ลำดับไม่อยู่ในช่วง (128)


23

ฉันพยายามป้อนคำสั่งต่อไปนี้

add-apt-repository ppa:ondrej/php5
You are about to add the following PPA to your system:
 This branch follows latest PHP packages as maintained by me & rest of the Debian pkg-php team.

You can get more information about the packages at https://sury.org

If you need to stay with PHP 5.4 you can use the oldstable PHP repository:

    ppa:ondrej/php5-oldstable
...
gpg: keyring `/tmp/tmpy7ajyf/secring.gpg' created
gpg: keyring `/tmp/tmpy7ajyf/pubring.gpg' created
gpg: requesting key E5267A6C from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpy7ajyf/trustdb.gpg: trustdb created
gpg: key E5267A6C: public key "Launchpad PPA for Ond\xc5\x99ej Surý" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.3/threading.py", line 639, in _bootstrap_inner
    self.run()
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 141, in run
    self.add_ppa_signing_key(self.ppa_path)
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 238, in add_ppa_signing_key
    tmp_export_keyring, signing_key_fingerprint, tmp_keyring_dir):
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 190, in _verify_fingerprint
    got_fingerprints = self._get_fingerprints(keyring, keyring_dir)
  File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 182, in _get_fingerprints
    output = subprocess.check_output(cmd, universal_newlines=True)
  File "/usr/lib/python3.3/subprocess.py", line 575, in check_output
    output, unused_err = process.communicate(timeout=timeout)
  File "/usr/lib/python3.3/subprocess.py", line 909, in communicate
    stdout = _eintr_retry_call(self.stdout.read)
  File "/usr/lib/python3.3/subprocess.py", line 476, in _eintr_retry_call
    return func(*args)
  File "/usr/lib/python3.3/encodings/ascii.py", line 26, in decode
    return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 92: ordinal not in range(128)

ฉันพยายามติดตั้ง php5.5

มีการแก้ไขข้อผิดพลาดนี้หรือไม่?

หรือจะแก้ไขได้อย่างไร?

เนื้อหาของ locale ad locale -a

locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
LANG=en.UTF-8
LANGUAGE=
LC_CTYPE="en.UTF-8"
LC_NUMERIC="en.UTF-8"
LC_TIME="en.UTF-8"
LC_COLLATE="en.UTF-8"
LC_MONETARY="en.UTF-8"
LC_MESSAGES="en.UTF-8"
LC_PAPER="en.UTF-8"
LC_NAME="en.UTF-8"
LC_ADDRESS="en.UTF-8"
LC_TELEPHONE="en.UTF-8"
LC_MEASUREMENT="en.UTF-8"
LC_IDENTIFICATION="en.UTF-8"
LC_ALL=
locale -a
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_COLLATE to default locale: No such file or directory
C
C.UTF-8
POSIX

 locale -a
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_COLLATE to default locale: No such file or directory
C
C.UTF-8
POSIX

คุณไม่สามารถติดตั้งได้จากที่นี่ใช่ไหม
Wilf

นี่คือเซิร์ฟเวอร์ทั้งหมดที่ฉันมีคือ command line
SamFisher83

คุณได้ลองตามที่แนะนำและใช้งานppa:ondrej/php5-oldstableหรือไม่? ลองอัปเดตด้วยเช่นกันpython-software-properties
Wilf

Oldstable ทำสิ่งเดียวกัน
SamFisher83

คำตอบ:


39

locale -aเอาท์พุทแสดงให้เห็นว่าคุณได้เปิดใช้ไม่มี UTF-8 สถานที่ ลองใช้:

sudo locale-gen en_US.UTF-8
export LANG=en_US.UTF-8

มองอย่างใกล้ชิดมากขึ้น C.UTF-8 พร้อมใช้งานคุณสามารถลองเปลี่ยนเป็น:

export LANG=C.UTF-8

ฉันพยายามตั้งค่านั้น แต่มันไม่ทำงาน ขอบคุณสำหรับคำแนะนำ
SamFisher83

@ SamFisher83 ผลลัพธ์ของlocaleคืออะไร และผลผลิตของlocale -aคืออะไร?
falconer

ฉันแก้ไขโพสต์หลักของฉัน
SamFisher83

@ SamFisher83 ฉันอัพเดตคำตอบแล้ว
falconer

1
มันช่วยฉันได้แล้วขอบคุณ !! ที่จุดเริ่มต้นของสคริปต์เชลล์บทบัญญัติคนจรจัดของฉันฉันเพิ่ม "ส่งออก" ของทุกบรรทัดที่ "locale -a" แสดง :-)
starikovs
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.