E: Unable to locate package winehq-stable
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package winehq-stable
software-installation wine 17.10
add a comment |
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package winehq-stable
software-installation wine 17.10
1
Could you please add a little more detail? What exactly did you do, what did you want to expect to happen and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. You can select, copy and paste terminal content and most dialogue messages in Ubuntu. Please edit your post to add information instead of posting a comment. (see How do I ask a good question?)
– David Foerster
Dec 10 '17 at 10:52
The package iswine-stable
, afaict.
– muru
Dec 13 '17 at 3:11
add a comment |
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package winehq-stable
software-installation wine 17.10
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package winehq-stable
software-installation wine 17.10
software-installation wine 17.10
edited Jan 27 at 12:39
karel
58.6k13128147
58.6k13128147
asked Dec 10 '17 at 1:39
xxxxxx
1112
1112
1
Could you please add a little more detail? What exactly did you do, what did you want to expect to happen and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. You can select, copy and paste terminal content and most dialogue messages in Ubuntu. Please edit your post to add information instead of posting a comment. (see How do I ask a good question?)
– David Foerster
Dec 10 '17 at 10:52
The package iswine-stable
, afaict.
– muru
Dec 13 '17 at 3:11
add a comment |
1
Could you please add a little more detail? What exactly did you do, what did you want to expect to happen and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. You can select, copy and paste terminal content and most dialogue messages in Ubuntu. Please edit your post to add information instead of posting a comment. (see How do I ask a good question?)
– David Foerster
Dec 10 '17 at 10:52
The package iswine-stable
, afaict.
– muru
Dec 13 '17 at 3:11
1
1
Could you please add a little more detail? What exactly did you do, what did you want to expect to happen and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. You can select, copy and paste terminal content and most dialogue messages in Ubuntu. Please edit your post to add information instead of posting a comment. (see How do I ask a good question?)
– David Foerster
Dec 10 '17 at 10:52
Could you please add a little more detail? What exactly did you do, what did you want to expect to happen and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. You can select, copy and paste terminal content and most dialogue messages in Ubuntu. Please edit your post to add information instead of posting a comment. (see How do I ask a good question?)
– David Foerster
Dec 10 '17 at 10:52
The package is
wine-stable
, afaict.– muru
Dec 13 '17 at 3:11
The package is
wine-stable
, afaict.– muru
Dec 13 '17 at 3:11
add a comment |
2 Answers
2
active
oldest
votes
The winehq-stable package is not in the default Ubuntu repositories, so apt is unable to locate it. In Ubuntu 17.10 install wine-stable instead. The wine-stable version is 2.0 in Ubuntu 17.10. The wine-stable version is 3.0 in Ubuntu 18.04, 18.10 and 19.04. Open the terminal and type:
sudo apt install -y wine-stable
Other suggested packages to install along with wine-stable are: dosbox playonlinux winbind wine-binfmt winetricks
add a comment |
You don't have the necessary setup work completed to add that package. According to the WineHQ Wiki's Ubuntu page:
- Open a terminal by pressing Ctrl+Alt+T.
If your computer is 64-bit, add the 32-bit architecture:
sudo dpkg --add-architecture i386
Add the repository:
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
Update repositories:
sudo apt-get update
Install
winehq-stable
:
sudo apt-get install --install-recommends winehq-stable
If
apt-get
mentions missing dependencies, install them and retry the install ofwinehq-stable
.
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%2f984844%2fe-unable-to-locate-package-winehq-stable%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The winehq-stable package is not in the default Ubuntu repositories, so apt is unable to locate it. In Ubuntu 17.10 install wine-stable instead. The wine-stable version is 2.0 in Ubuntu 17.10. The wine-stable version is 3.0 in Ubuntu 18.04, 18.10 and 19.04. Open the terminal and type:
sudo apt install -y wine-stable
Other suggested packages to install along with wine-stable are: dosbox playonlinux winbind wine-binfmt winetricks
add a comment |
The winehq-stable package is not in the default Ubuntu repositories, so apt is unable to locate it. In Ubuntu 17.10 install wine-stable instead. The wine-stable version is 2.0 in Ubuntu 17.10. The wine-stable version is 3.0 in Ubuntu 18.04, 18.10 and 19.04. Open the terminal and type:
sudo apt install -y wine-stable
Other suggested packages to install along with wine-stable are: dosbox playonlinux winbind wine-binfmt winetricks
add a comment |
The winehq-stable package is not in the default Ubuntu repositories, so apt is unable to locate it. In Ubuntu 17.10 install wine-stable instead. The wine-stable version is 2.0 in Ubuntu 17.10. The wine-stable version is 3.0 in Ubuntu 18.04, 18.10 and 19.04. Open the terminal and type:
sudo apt install -y wine-stable
Other suggested packages to install along with wine-stable are: dosbox playonlinux winbind wine-binfmt winetricks
The winehq-stable package is not in the default Ubuntu repositories, so apt is unable to locate it. In Ubuntu 17.10 install wine-stable instead. The wine-stable version is 2.0 in Ubuntu 17.10. The wine-stable version is 3.0 in Ubuntu 18.04, 18.10 and 19.04. Open the terminal and type:
sudo apt install -y wine-stable
Other suggested packages to install along with wine-stable are: dosbox playonlinux winbind wine-binfmt winetricks
edited Jan 27 at 12:25
answered Dec 10 '17 at 2:08
karelkarel
58.6k13128147
58.6k13128147
add a comment |
add a comment |
You don't have the necessary setup work completed to add that package. According to the WineHQ Wiki's Ubuntu page:
- Open a terminal by pressing Ctrl+Alt+T.
If your computer is 64-bit, add the 32-bit architecture:
sudo dpkg --add-architecture i386
Add the repository:
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
Update repositories:
sudo apt-get update
Install
winehq-stable
:
sudo apt-get install --install-recommends winehq-stable
If
apt-get
mentions missing dependencies, install them and retry the install ofwinehq-stable
.
add a comment |
You don't have the necessary setup work completed to add that package. According to the WineHQ Wiki's Ubuntu page:
- Open a terminal by pressing Ctrl+Alt+T.
If your computer is 64-bit, add the 32-bit architecture:
sudo dpkg --add-architecture i386
Add the repository:
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
Update repositories:
sudo apt-get update
Install
winehq-stable
:
sudo apt-get install --install-recommends winehq-stable
If
apt-get
mentions missing dependencies, install them and retry the install ofwinehq-stable
.
add a comment |
You don't have the necessary setup work completed to add that package. According to the WineHQ Wiki's Ubuntu page:
- Open a terminal by pressing Ctrl+Alt+T.
If your computer is 64-bit, add the 32-bit architecture:
sudo dpkg --add-architecture i386
Add the repository:
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
Update repositories:
sudo apt-get update
Install
winehq-stable
:
sudo apt-get install --install-recommends winehq-stable
If
apt-get
mentions missing dependencies, install them and retry the install ofwinehq-stable
.
You don't have the necessary setup work completed to add that package. According to the WineHQ Wiki's Ubuntu page:
- Open a terminal by pressing Ctrl+Alt+T.
If your computer is 64-bit, add the 32-bit architecture:
sudo dpkg --add-architecture i386
Add the repository:
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
Update repositories:
sudo apt-get update
Install
winehq-stable
:
sudo apt-get install --install-recommends winehq-stable
If
apt-get
mentions missing dependencies, install them and retry the install ofwinehq-stable
.
answered Dec 10 '17 at 2:15
Chai T. RexChai T. Rex
4,13211333
4,13211333
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%2f984844%2fe-unable-to-locate-package-winehq-stable%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
1
Could you please add a little more detail? What exactly did you do, what did you want to expect to happen and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. You can select, copy and paste terminal content and most dialogue messages in Ubuntu. Please edit your post to add information instead of posting a comment. (see How do I ask a good question?)
– David Foerster
Dec 10 '17 at 10:52
The package is
wine-stable
, afaict.– muru
Dec 13 '17 at 3:11