debian netplan install: library missing. what to install for these .pc filesDebian 9.4 netplanCannot create...
Reference request: mod 2 cohomology of periodic KO theory
How may I shorten this shell script?
Why must API keys be kept private?
Is it okay to paraphrase other authors' literature reviews?
Is it OK to accept a job opportunity while planning on not taking it?
Found more old paper shares from broken up companies
Other than a swing wing, what types of variable geometry have flown?
Short story where a flexible reality hardens to an unchanging one
dos2unix is unable to convert typescript file to unix format
What happens if an IRB mistakenly approves unethical research?
What is the purpose of this "red room" in "Stranger Things"?
Span command across LaTeX environments
The 50,000 row query limit is not actually a "per APEX call" as widely believed
Sci-fi short story: plants attracting spaceship and using them as a agents of pollination between two planets
Why did modems have speakers?
Why do people say "I am broke" instead of "I am broken"?
How to correct errors in proofs of an accepted paper
Sometimes you are this word with three vowels
Are rockets faster than airplanes?
Is it possible to build or embed the SMILES representation of compounds in 3D?
How do changes to your speed that occur on your own turn affect your available movement?
What's the 1 inch size square knob sticking out of wall?
I have a domain, static IP address and many devices I'd like to access outside my house. How do I route them?
What was the rationale behind 36 bit computer architectures?
debian netplan install: library missing. what to install for these .pc files
Debian 9.4 netplanCannot create “Hello World” module (and NVIDIA, and VirtualBox)rrdtool 1.4.7 compilation fail : glib-2.0/glib.hWhere is <libraryname>.pc?Unable to compile vapoursynth: failed to link zimgCompiling Octave: how to add a new item to the include directories for Qt?How to safely upgrade GTK+ version?why are .pc files not listed in one placeCommands not found on Debian9 stretch OSsite-packages directory not found after installing pip3 with apt-get in Ubuntu WSLHow do you specify the pkg-config path when compiling something with cmake?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
First attempt to build netplan.io on Debian 9 and have the errors below. Can you tell me what I need to install?
Package yaml-0.1 was not found in the pkg-config search path.
Perhaps you should add the directory containing
`yaml-0.1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'yaml-0.1' found
Package uuid was not found in the pkg-config search path.
Perhaps you should add the directory containing
`uuid.pc'
to the PKG_CONFIG_PATH environment variable
No package 'uuid' found
Neither of the pkgconfig directories under /usr contain these .pc files. And the pc files do not show up on a wider search.
Please, what do I need to install?
There is also this :
src/generate.c:24:18: fatal error: glib.h: No such file or directory
#include <glib.h>
however there is a glib-2.0.pc in the usr/lib/x86_64-linux-gnu/pkgconfig/ directory. Is there a misconfiguration?
Thanks
debian compiling
add a comment |
First attempt to build netplan.io on Debian 9 and have the errors below. Can you tell me what I need to install?
Package yaml-0.1 was not found in the pkg-config search path.
Perhaps you should add the directory containing
`yaml-0.1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'yaml-0.1' found
Package uuid was not found in the pkg-config search path.
Perhaps you should add the directory containing
`uuid.pc'
to the PKG_CONFIG_PATH environment variable
No package 'uuid' found
Neither of the pkgconfig directories under /usr contain these .pc files. And the pc files do not show up on a wider search.
Please, what do I need to install?
There is also this :
src/generate.c:24:18: fatal error: glib.h: No such file or directory
#include <glib.h>
however there is a glib-2.0.pc in the usr/lib/x86_64-linux-gnu/pkgconfig/ directory. Is there a misconfiguration?
Thanks
debian compiling
1
In Debian they are using*--devversion of packages to distribute.hand.pcfiles. Tryapt-get install libyaml-devandlibc6-dev
– user996142
Apr 19 '18 at 22:53
1
You'll also wantlibglib2.0-devandpandoc. Check the output ofpkg-config --cflags --libs glib-2.0.
– dsstorefile1
Apr 19 '18 at 23:00
1
Thank you thank you. I also needed uuid-dev. So it is installed now.
– Stephen Boston
Apr 20 '18 at 2:11
add a comment |
First attempt to build netplan.io on Debian 9 and have the errors below. Can you tell me what I need to install?
Package yaml-0.1 was not found in the pkg-config search path.
Perhaps you should add the directory containing
`yaml-0.1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'yaml-0.1' found
Package uuid was not found in the pkg-config search path.
Perhaps you should add the directory containing
`uuid.pc'
to the PKG_CONFIG_PATH environment variable
No package 'uuid' found
Neither of the pkgconfig directories under /usr contain these .pc files. And the pc files do not show up on a wider search.
Please, what do I need to install?
There is also this :
src/generate.c:24:18: fatal error: glib.h: No such file or directory
#include <glib.h>
however there is a glib-2.0.pc in the usr/lib/x86_64-linux-gnu/pkgconfig/ directory. Is there a misconfiguration?
Thanks
debian compiling
First attempt to build netplan.io on Debian 9 and have the errors below. Can you tell me what I need to install?
Package yaml-0.1 was not found in the pkg-config search path.
Perhaps you should add the directory containing
`yaml-0.1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'yaml-0.1' found
Package uuid was not found in the pkg-config search path.
Perhaps you should add the directory containing
`uuid.pc'
to the PKG_CONFIG_PATH environment variable
No package 'uuid' found
Neither of the pkgconfig directories under /usr contain these .pc files. And the pc files do not show up on a wider search.
Please, what do I need to install?
There is also this :
src/generate.c:24:18: fatal error: glib.h: No such file or directory
#include <glib.h>
however there is a glib-2.0.pc in the usr/lib/x86_64-linux-gnu/pkgconfig/ directory. Is there a misconfiguration?
Thanks
debian compiling
debian compiling
edited Apr 22 '18 at 18:00
Stephen Boston
asked Apr 19 '18 at 22:31
Stephen BostonStephen Boston
2693 silver badges11 bronze badges
2693 silver badges11 bronze badges
1
In Debian they are using*--devversion of packages to distribute.hand.pcfiles. Tryapt-get install libyaml-devandlibc6-dev
– user996142
Apr 19 '18 at 22:53
1
You'll also wantlibglib2.0-devandpandoc. Check the output ofpkg-config --cflags --libs glib-2.0.
– dsstorefile1
Apr 19 '18 at 23:00
1
Thank you thank you. I also needed uuid-dev. So it is installed now.
– Stephen Boston
Apr 20 '18 at 2:11
add a comment |
1
In Debian they are using*--devversion of packages to distribute.hand.pcfiles. Tryapt-get install libyaml-devandlibc6-dev
– user996142
Apr 19 '18 at 22:53
1
You'll also wantlibglib2.0-devandpandoc. Check the output ofpkg-config --cflags --libs glib-2.0.
– dsstorefile1
Apr 19 '18 at 23:00
1
Thank you thank you. I also needed uuid-dev. So it is installed now.
– Stephen Boston
Apr 20 '18 at 2:11
1
1
In Debian they are using
*--dev version of packages to distribute .h and .pc files. Try apt-get install libyaml-dev and libc6-dev– user996142
Apr 19 '18 at 22:53
In Debian they are using
*--dev version of packages to distribute .h and .pc files. Try apt-get install libyaml-dev and libc6-dev– user996142
Apr 19 '18 at 22:53
1
1
You'll also want
libglib2.0-dev and pandoc. Check the output of pkg-config --cflags --libs glib-2.0.– dsstorefile1
Apr 19 '18 at 23:00
You'll also want
libglib2.0-dev and pandoc. Check the output of pkg-config --cflags --libs glib-2.0.– dsstorefile1
Apr 19 '18 at 23:00
1
1
Thank you thank you. I also needed uuid-dev. So it is installed now.
– Stephen Boston
Apr 20 '18 at 2:11
Thank you thank you. I also needed uuid-dev. So it is installed now.
– Stephen Boston
Apr 20 '18 at 2:11
add a comment |
1 Answer
1
active
oldest
votes
After taking
https://github.com/CanonicalLtd/netplan.git
Need to install :
libyaml-dev
libc6-dev
libglib2.0-dev
pandoc
uuid-dev
Thanks to @dsstorefile and @user996142
To run netplan will require :
pip3 install pyyaml
For Debian 10, need also
pip3 install netifaces
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f438838%2fdebian-netplan-install-library-missing-what-to-install-for-these-pc-files%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
After taking
https://github.com/CanonicalLtd/netplan.git
Need to install :
libyaml-dev
libc6-dev
libglib2.0-dev
pandoc
uuid-dev
Thanks to @dsstorefile and @user996142
To run netplan will require :
pip3 install pyyaml
For Debian 10, need also
pip3 install netifaces
add a comment |
After taking
https://github.com/CanonicalLtd/netplan.git
Need to install :
libyaml-dev
libc6-dev
libglib2.0-dev
pandoc
uuid-dev
Thanks to @dsstorefile and @user996142
To run netplan will require :
pip3 install pyyaml
For Debian 10, need also
pip3 install netifaces
add a comment |
After taking
https://github.com/CanonicalLtd/netplan.git
Need to install :
libyaml-dev
libc6-dev
libglib2.0-dev
pandoc
uuid-dev
Thanks to @dsstorefile and @user996142
To run netplan will require :
pip3 install pyyaml
For Debian 10, need also
pip3 install netifaces
After taking
https://github.com/CanonicalLtd/netplan.git
Need to install :
libyaml-dev
libc6-dev
libglib2.0-dev
pandoc
uuid-dev
Thanks to @dsstorefile and @user996142
To run netplan will require :
pip3 install pyyaml
For Debian 10, need also
pip3 install netifaces
edited 31 mins ago
answered Apr 20 '18 at 2:15
Stephen BostonStephen Boston
2693 silver badges11 bronze badges
2693 silver badges11 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f438838%2fdebian-netplan-install-library-missing-what-to-install-for-these-pc-files%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
In Debian they are using
*--devversion of packages to distribute.hand.pcfiles. Tryapt-get install libyaml-devandlibc6-dev– user996142
Apr 19 '18 at 22:53
1
You'll also want
libglib2.0-devandpandoc. Check the output ofpkg-config --cflags --libs glib-2.0.– dsstorefile1
Apr 19 '18 at 23:00
1
Thank you thank you. I also needed uuid-dev. So it is installed now.
– Stephen Boston
Apr 20 '18 at 2:11