Get notifications on updates for this project. Get the SourceForge newsletter. Get newsletters and notices that include site news, special offers and exclusive discounts about IT products & services.
Links for libjson-c-dev
Ubuntu Resources:
Download Source Package json-c:
Maintainer:
- Ubuntu Developers (Mail Archive)
Please consider filing a bug or asking a question via Launchpad before contacting the maintainer directly.
Ubuntu Dev Tools
Original Maintainers (usually from Debian):
- fabien boucher
- Ondřej Surý
It should generally not be necessary for users to contact the original maintainer.
External Resources:
- Homepage [github.com]
Similar packages:
Other Packages Related to libjson-c-dev
|
|
|
|
-
- dep:libjson-c2 (= 0.11-4ubuntu2)
- JSON manipulation library - shared library
Download libjson-c-dev
Architecture | Package Size | Installed Size | Files |
---|---|---|---|
amd64 | 29.9 kB | 171.0 kB | [list of files] |
arm64 | 28.8 kB | 161.0 kB | [list of files] |
armhf | 27.5 kB | 140.0 kB | [list of files] |
i386 | 30.5 kB | 154.0 kB | [list of files] |
powerpc | 29.0 kB | 154.0 kB | [list of files] |
ppc64el | 31.2 kB | 178.0 kB | [list of files] |
s390x | 30.1 kB | 150.0 kB | [list of files] |
- Install the Dart SDK
The Dart SDK has the libraries and command-line tools that you need to developDart web, command-line, and server apps.If you’re developing only mobile apps,then you don’t need the Dart SDK; just install Flutter.
To learn about other tools you can use for Dart development, seethe Dart tools page.To learn about what’s in the SDK, see Dart SDK overview.
Install the Dart SDK
As the following instructions show,you can use a package managerto easily install and update the Dart SDK.Alternatively, you canbuild the SDK from source ordownload the SDK as a zip file.
Dart tools may send usage metrics and crash reports to Google.By downloading the Dart SDK, you agree to theGoogle Terms of Service.Note: The Google Privacy Policydescribes how data is handled in this service.
- Windows
- Linux
- Mac
You can install the Dart SDK using Chocolatey.
To install a stable release of the Dart SDK, run this command:
To install a dev release, run this command:
To upgrade the Dart SDK, run this command(add --pre
to upgrade the dev release):
If you’re using Debian/Ubuntu on AMD64 (64-bit Intel), you can choose one of thefollowing options, both of which can update the SDK automatically when newversions are released.
Install using apt-get
Perform the following one-time setup:
Then install thestablerelease of the Dart SDK:
Or, to install thedevrelease of the Dart SDK,run the one-time setup commands followed by:
Install a Debian package
Alternatively, download Dart SDK as Debian package in the .deb
package format.
Modify PATH for access to all Dart binaries
After installing the SDK, add its bin
directory to your PATH
. For example,use the following command to change PATH
in your active terminal session:
To change the PATH for future terminal sessions, use a command like this:
Install Homebrew, and then run:
To install a dev channel release, use --devel
:
Important: Make sure the Homebrew bin
directory is in your PATH
. Setting up the path correctly makes it easier to use Dart SDK commands such as dart
and dartfmt
. For help setting up your path, consult the Homebrew FAQ.
Upgrade
To upgrade when a new release of Dart is available run:
To install a stable channel release when a dev release is currently active,run:
To upgrade to a dev channel release when a stable release iscurrently active, run:
Switch release
To switch between locally installed dart releases runbrew switch dart <version>
. Examples:
If you aren’t sure which versions of dart you have installed, then run:
The command output lists the latest stable and dev versions at the top,followed by your locally installed versions.
About release channels and version strings
Download Dev C++ Ubuntu
The Dart SDK has two release channels:
- stable channel: stable releases,updated no more frequently than every 6 weeks;currently
[calculating]
. - dev channel: prereleases, usually updated 1/week;currently
[calculating]
.
Download Dev C Ubuntu Windows 7
Warning: To give you early access to new features and fixes, dev channel releases are not as heavily tested as the stable release.
Stable channel releases of the Dart SDK have version strings like 1.24.3
and 2.1.0
.They consist of dot-separated integers, with no hyphens or letters.
Dev channel releases of the Dart SDK (prereleases)have additional characters, starting with a hyphen (-
).For example, Dart 2 prereleases have version numbers starting with2.0.0-dev
such as 2.0.0-dev.69.5
.
You can get stable and dev channel releases usingthe instructions above, or you candownload the SDK as a zip file.