add-apt-repository throws Python error: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5
Trying to install the latest PHP5 packages and so I add the repo (
sudo add-apt-repository ppa:ondrej/php5) I need and this is the outcome:
Traceback (most recent call last):
File "/usr/lib/python3.2/threading.py", line 740, 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 234, in add_ppa_signing_key
tmp_export_keyring, signing_key_fingerprint, tmp_keyring_dir):
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 186, in _verify_fingerprint
got_fingerprints = self._get_fingerprints(keyring, keyring_dir)
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 178, in _get_fingerprints
output = subprocess.check_output(cmd, universal_newlines=True)
File "/usr/lib/python3.2/subprocess.py", line 516, in check_output
output, unused_err = process.communicate()
File "/usr/lib/python3.2/subprocess.py", line 811, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "/usr/lib/python3.2/subprocess.py", line 456, in _eintr_retry_call
return func(*args)
File "/usr/lib/python3.2/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)
Running on Ubuntu 12.04 Server
server apache2 php
add a comment |
Trying to install the latest PHP5 packages and so I add the repo (
sudo add-apt-repository ppa:ondrej/php5) I need and this is the outcome:
Traceback (most recent call last):
File "/usr/lib/python3.2/threading.py", line 740, 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 234, in add_ppa_signing_key
tmp_export_keyring, signing_key_fingerprint, tmp_keyring_dir):
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 186, in _verify_fingerprint
got_fingerprints = self._get_fingerprints(keyring, keyring_dir)
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 178, in _get_fingerprints
output = subprocess.check_output(cmd, universal_newlines=True)
File "/usr/lib/python3.2/subprocess.py", line 516, in check_output
output, unused_err = process.communicate()
File "/usr/lib/python3.2/subprocess.py", line 811, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "/usr/lib/python3.2/subprocess.py", line 456, in _eintr_retry_call
return func(*args)
File "/usr/lib/python3.2/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)
Running on Ubuntu 12.04 Server
server apache2 php
Have you messed with the default python installation (for example, symlinking python3.2 to /usr/bin/python?) - apt should be using the system default python2.7 on 12.04. Can you add the output ofls -l $(which python)to your post?
– steeldriver
Jul 1 '14 at 19:25
lrwxrwxrwx 1 root root 9 Apr 10 2013 /usr/bin/python -> python2.7 I did install the packages in order to get apt-add-repo (which messes with Python iiirc)
– James Heald
Jul 2 '14 at 10:32
In that case I don't understand why it's apparently using python3.2 - sorry
– steeldriver
Jul 2 '14 at 12:05
add a comment |
Trying to install the latest PHP5 packages and so I add the repo (
sudo add-apt-repository ppa:ondrej/php5) I need and this is the outcome:
Traceback (most recent call last):
File "/usr/lib/python3.2/threading.py", line 740, 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 234, in add_ppa_signing_key
tmp_export_keyring, signing_key_fingerprint, tmp_keyring_dir):
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 186, in _verify_fingerprint
got_fingerprints = self._get_fingerprints(keyring, keyring_dir)
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 178, in _get_fingerprints
output = subprocess.check_output(cmd, universal_newlines=True)
File "/usr/lib/python3.2/subprocess.py", line 516, in check_output
output, unused_err = process.communicate()
File "/usr/lib/python3.2/subprocess.py", line 811, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "/usr/lib/python3.2/subprocess.py", line 456, in _eintr_retry_call
return func(*args)
File "/usr/lib/python3.2/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)
Running on Ubuntu 12.04 Server
server apache2 php
Trying to install the latest PHP5 packages and so I add the repo (
sudo add-apt-repository ppa:ondrej/php5) I need and this is the outcome:
Traceback (most recent call last):
File "/usr/lib/python3.2/threading.py", line 740, 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 234, in add_ppa_signing_key
tmp_export_keyring, signing_key_fingerprint, tmp_keyring_dir):
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 186, in _verify_fingerprint
got_fingerprints = self._get_fingerprints(keyring, keyring_dir)
File "/usr/lib/python3/dist-packages/softwareproperties/ppa.py", line 178, in _get_fingerprints
output = subprocess.check_output(cmd, universal_newlines=True)
File "/usr/lib/python3.2/subprocess.py", line 516, in check_output
output, unused_err = process.communicate()
File "/usr/lib/python3.2/subprocess.py", line 811, in communicate
stdout = _eintr_retry_call(self.stdout.read)
File "/usr/lib/python3.2/subprocess.py", line 456, in _eintr_retry_call
return func(*args)
File "/usr/lib/python3.2/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)
Running on Ubuntu 12.04 Server
server apache2 php
server apache2 php
edited Sep 26 '17 at 12:26
kenorb
4,73014054
4,73014054
asked Jul 1 '14 at 17:44
James HealdJames Heald
2772315
2772315
Have you messed with the default python installation (for example, symlinking python3.2 to /usr/bin/python?) - apt should be using the system default python2.7 on 12.04. Can you add the output ofls -l $(which python)to your post?
– steeldriver
Jul 1 '14 at 19:25
lrwxrwxrwx 1 root root 9 Apr 10 2013 /usr/bin/python -> python2.7 I did install the packages in order to get apt-add-repo (which messes with Python iiirc)
– James Heald
Jul 2 '14 at 10:32
In that case I don't understand why it's apparently using python3.2 - sorry
– steeldriver
Jul 2 '14 at 12:05
add a comment |
Have you messed with the default python installation (for example, symlinking python3.2 to /usr/bin/python?) - apt should be using the system default python2.7 on 12.04. Can you add the output ofls -l $(which python)to your post?
– steeldriver
Jul 1 '14 at 19:25
lrwxrwxrwx 1 root root 9 Apr 10 2013 /usr/bin/python -> python2.7 I did install the packages in order to get apt-add-repo (which messes with Python iiirc)
– James Heald
Jul 2 '14 at 10:32
In that case I don't understand why it's apparently using python3.2 - sorry
– steeldriver
Jul 2 '14 at 12:05
Have you messed with the default python installation (for example, symlinking python3.2 to /usr/bin/python?) - apt should be using the system default python2.7 on 12.04. Can you add the output of
ls -l $(which python) to your post?– steeldriver
Jul 1 '14 at 19:25
Have you messed with the default python installation (for example, symlinking python3.2 to /usr/bin/python?) - apt should be using the system default python2.7 on 12.04. Can you add the output of
ls -l $(which python) to your post?– steeldriver
Jul 1 '14 at 19:25
lrwxrwxrwx 1 root root 9 Apr 10 2013 /usr/bin/python -> python2.7 I did install the packages in order to get apt-add-repo (which messes with Python iiirc)
– James Heald
Jul 2 '14 at 10:32
lrwxrwxrwx 1 root root 9 Apr 10 2013 /usr/bin/python -> python2.7 I did install the packages in order to get apt-add-repo (which messes with Python iiirc)
– James Heald
Jul 2 '14 at 10:32
In that case I don't understand why it's apparently using python3.2 - sorry
– steeldriver
Jul 2 '14 at 12:05
In that case I don't understand why it's apparently using python3.2 - sorry
– steeldriver
Jul 2 '14 at 12:05
add a comment |
3 Answers
3
active
oldest
votes
The software-properties-common is buggy, so if have a time, please report this as a bug in software-properties-common.
A better workaround was pointed out in the issue tracker that uses specific unicode locale when adding the repository
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php5-5.6
add a comment |
Try installing a language pack which may correct your issues with encoding, e.g.
sudo apt-get install language-pack-en
This will provide English translation data updates for all supported packages (including Python).
See: UnicodeEncodeError: 'ascii' codec can't encode character.
Otherwise set the locale settings manually, e.g.
$ locale -a | grep "^en_.+UTF-8"
en_GB.UTF-8
en_US.UTF-8
$ export LC_ALL=en_GB.UTF-8
$ export LANG=en_GB.UTF-8
Related: locale error with apt-get install
add a comment |
If you are in docker, this worked for me:
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
An after:
RUN apt-get update
RUN echo "Y" | apt-get install php7.2
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f490468%2fadd-apt-repository-throws-python-error-unicodedecodeerror-ascii-codec-cant%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The software-properties-common is buggy, so if have a time, please report this as a bug in software-properties-common.
A better workaround was pointed out in the issue tracker that uses specific unicode locale when adding the repository
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php5-5.6
add a comment |
The software-properties-common is buggy, so if have a time, please report this as a bug in software-properties-common.
A better workaround was pointed out in the issue tracker that uses specific unicode locale when adding the repository
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php5-5.6
add a comment |
The software-properties-common is buggy, so if have a time, please report this as a bug in software-properties-common.
A better workaround was pointed out in the issue tracker that uses specific unicode locale when adding the repository
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php5-5.6
The software-properties-common is buggy, so if have a time, please report this as a bug in software-properties-common.
A better workaround was pointed out in the issue tracker that uses specific unicode locale when adding the repository
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php5-5.6
edited Sep 26 '17 at 12:25
kenorb
4,73014054
4,73014054
answered Jul 2 '14 at 17:32
oerdnjoerdnj
6,9643348
6,9643348
add a comment |
add a comment |
Try installing a language pack which may correct your issues with encoding, e.g.
sudo apt-get install language-pack-en
This will provide English translation data updates for all supported packages (including Python).
See: UnicodeEncodeError: 'ascii' codec can't encode character.
Otherwise set the locale settings manually, e.g.
$ locale -a | grep "^en_.+UTF-8"
en_GB.UTF-8
en_US.UTF-8
$ export LC_ALL=en_GB.UTF-8
$ export LANG=en_GB.UTF-8
Related: locale error with apt-get install
add a comment |
Try installing a language pack which may correct your issues with encoding, e.g.
sudo apt-get install language-pack-en
This will provide English translation data updates for all supported packages (including Python).
See: UnicodeEncodeError: 'ascii' codec can't encode character.
Otherwise set the locale settings manually, e.g.
$ locale -a | grep "^en_.+UTF-8"
en_GB.UTF-8
en_US.UTF-8
$ export LC_ALL=en_GB.UTF-8
$ export LANG=en_GB.UTF-8
Related: locale error with apt-get install
add a comment |
Try installing a language pack which may correct your issues with encoding, e.g.
sudo apt-get install language-pack-en
This will provide English translation data updates for all supported packages (including Python).
See: UnicodeEncodeError: 'ascii' codec can't encode character.
Otherwise set the locale settings manually, e.g.
$ locale -a | grep "^en_.+UTF-8"
en_GB.UTF-8
en_US.UTF-8
$ export LC_ALL=en_GB.UTF-8
$ export LANG=en_GB.UTF-8
Related: locale error with apt-get install
Try installing a language pack which may correct your issues with encoding, e.g.
sudo apt-get install language-pack-en
This will provide English translation data updates for all supported packages (including Python).
See: UnicodeEncodeError: 'ascii' codec can't encode character.
Otherwise set the locale settings manually, e.g.
$ locale -a | grep "^en_.+UTF-8"
en_GB.UTF-8
en_US.UTF-8
$ export LC_ALL=en_GB.UTF-8
$ export LANG=en_GB.UTF-8
Related: locale error with apt-get install
answered Sep 26 '17 at 12:25
kenorbkenorb
4,73014054
4,73014054
add a comment |
add a comment |
If you are in docker, this worked for me:
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
An after:
RUN apt-get update
RUN echo "Y" | apt-get install php7.2
add a comment |
If you are in docker, this worked for me:
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
An after:
RUN apt-get update
RUN echo "Y" | apt-get install php7.2
add a comment |
If you are in docker, this worked for me:
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
An after:
RUN apt-get update
RUN echo "Y" | apt-get install php7.2
If you are in docker, this worked for me:
RUN LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
An after:
RUN apt-get update
RUN echo "Y" | apt-get install php7.2
answered Mar 14 at 3:50
JRichardszJRichardsz
1135
1135
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f490468%2fadd-apt-repository-throws-python-error-unicodedecodeerror-ascii-codec-cant%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you messed with the default python installation (for example, symlinking python3.2 to /usr/bin/python?) - apt should be using the system default python2.7 on 12.04. Can you add the output of
ls -l $(which python)to your post?– steeldriver
Jul 1 '14 at 19:25
lrwxrwxrwx 1 root root 9 Apr 10 2013 /usr/bin/python -> python2.7 I did install the packages in order to get apt-add-repo (which messes with Python iiirc)
– James Heald
Jul 2 '14 at 10:32
In that case I don't understand why it's apparently using python3.2 - sorry
– steeldriver
Jul 2 '14 at 12:05