add-apt-repository throws Python error: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5locale error...
Why must traveling waves have the same amplitude to form a standing wave?
Am I not good enough for you?
Making a sword in the stone, in a medieval world without magic
Make a transparent 448*448 image
How do anti-virus programs start at Windows boot?
How to deal with a cynical class?
What happens with multiple copies of Humility and Glorious Anthem on the battlefield?
"One can do his homework in the library"
Examples of odd-dimensional manifolds that do not admit contact structure
Can someone explain this Mudra being done by Ramakrishna Paramhansa in Samadhi?
Playing ONE triplet (not three)
What is the dot in “1.2.4."
Question about partial fractions with irreducible quadratic factors
validation vs test vs training accuracy, which one to compare for claiming overfit?
Can the druid cantrip Thorn Whip really defeat a water weird this easily?
What exactly is the purpose of connection links straped between the rocket and the launch pad
Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?
Time dilation for a moving electronic clock
Is going from continuous data to categorical always wrong?
Replacing Windows 7 security updates with anti-virus?
Word for a person who has no opinion about whether god exists
What Happens when Passenger Refuses to Fly Boeing 737 Max?
Decoding assembly instructions in a Game Boy disassembler
Latest web browser compatible with Windows 98
add-apt-repository throws Python error: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5
locale error with apt-get installCan't add repository due to 'missing' fingerprintI want to install php 5.3.9 in ubuntu 12.04 via apt-get - what repository should I add?Can't get rid of GPG error in aptWhy Can't I add this repository?sudo apt install python-certbot-nginx error ubuntu 18.04
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,68014054
4,68014054
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,68014054
4,68014054
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,68014054
4,68014054
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 8 mins ago
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