Installing on Linux/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "Każdego dnia możesz wykonać aktualizacje do najnowszej wersji daily za pomocą:")
(Created page with "{{Emphasis|Note:}} W niektórych przypadkach nowy kod lub zależności dodane do FreeCAD powodują błędy w pakietach. Jeśli tak się stanie, pakiet daily może nie zostać...")
Line 113: Line 113:
}}
}}


{{Emphasis|Note:}} W niektórych przypadkach nowy kod lub zależności dodane do FreeCAD powodują błędy w pakietach. Jeśli tak się stanie, pakiet daily może nie zostać wygenerowany, dopóki opiekunowie nie rozwiążą problemów ręcznie. Jeśli chcesz kontynuować testowanie najnowszego kodu, powinieneś otrzymać kod źródłowy i skompilować FreeCAD bezpośrednio. Instrukcje znajdują się na stronie [[compiling|kompilacja]].
{{Emphasis|Note:}} in some cases new code or dependencies added to FreeCAD will cause packaging errors; if this happens, a daily package may not be generated until the maintainers manually fix the problems. If you wish to continue testing the latest code, you should get the source code and compile FreeCAD directly; for instructions see [[compiling|compiling]].


Run the daily (PPA) version of FreeCAD:
Run the daily (PPA) version of FreeCAD:

Revision as of 17:55, 11 May 2022

Przegląd

Instalacja FreeCAD na najbardziej znanych systemach Linux została teraz wsparta przez społeczność, a FreeCAD powinien być dostępny bezpośrednio poprzez menadżer pakietów dostępny w Twojej dystrybucji. Zespół FreeCAD dostarcza również kilka pakietów:

Ubuntu i systemy oparte na Ubuntu

Wiele dystrybucji Linuksa opiera się na Ubuntu i udostępnia jego repozytoria. Oprócz oficjalnych wariantów (Kubuntu, Lubuntu i Xubuntu), istnieją również dystrybucje pochoidne, takie jak Linux Mint, Voyager i inne. Poniższe opcje instalacji powinny być kompatybilne z tymi systemami.

Wersja oficjalna

FreeCAD jest dostępny z uniwersalnych repozytoriów Ubuntu i może być zainstalowany poprzez Centrum Oprogramowania lub za pomocą tego polecenia w terminalu:

sudo apt install freecad

Note: pakiet Ubuntu Universe może być nieaktualny, ponieważ może pozostawać niezgodny z najnowszym stabilnym kodem źródłowym. W tym przypadku, sugeruje się zainstalowanie pakiet -stable PPA dostępny poniżej. Dodatkowo, instalacja pakietu -daily może być wykonana w celu przetestowania tej gałęzi rozwoju.

Wersja stabilna PPA

Osobiste Archiwum Pakietów (PPA) dla stabilnego wydania FreeCAD jest utrzymywane przez społeczność FreeCAD na Launchpadzie. Repozytorium Launchpada nazywa się FreeCAD Stable Releases .

GUI

Instalacja stabilnego PPA za pomocą graficznego interfejsu użytkownika (GUI):

  • Przejdź do Zainstaluj stabilne PPA za pomocą graficznego interfejsu użytkownika (GUI):
  • Kliknij na And, a następnie skopiuj i wklej następującą linię
ppa:freecad-maintainers/freecad-stable
3. Dodaj źródło, zamknij okno dialogowe i ponownie załaduj źródła oprogramowania, jeśli zostaniesz o to poproszony.

Teraz możesz znaleźć i zainstalować ostatnią stabilną wersję FreeCAD z Centrum oprogramowania Ubuntu.

CLI

Instalacja stabilnego PPA za pomocą interfejsu wiersza poleceń (CLI):

1. Dodaj PPA do swoich źródeł oprogramowania:
sudo add-apt-repository ppa:freecad-maintainers/freecad-stable
2. Nie zapomnij pobrać zaktualizowanych list pakietów:
sudo apt update
3.Następnie zainstaluj FreeCAD wraz z dokumentacją offline:
sudo apt install freecad freecad-doc

Note: Z powodu problemów z pakowaniem, w niektórych wersjach Ubuntu pakiet freecad-doc kolidował z instalacją pakietu FreeCAD lub jednej z jego zależności; jeśli tak jest, usuń pakiet freecad-doc i instaluj tylko pakiet freecad. Jeśli pakiet freecad-doc nie istnieje, to go zignoruj.

Weryfikacja instalacji

4. Po dodaniu stabilnego PPA do źródeł, pakiet freecad zainstaluje tę wersję PPA nad zamiast wersji dostarczonej przez repozytorium Ubuntu Universe. Możesz zobaczyć dostępne wersje za pomocą polecenia apt-cache.
apt-cache policy freecad
Wynik powinien wyglądać podobnie do poniższego (oczywiście informacje o wersji będą się różnić):
freecad:
  Installed: (none)
  Candidate: 2:0.18.4+dfsg1~201911060029~ubuntu18.04.1
  Version table:
     2:0.18.4+dfsg1~201911060029~ubuntu18.04.1 500
        500 http://ppa.launchpad.net/freecad-maintainers/freecad-stable/ubuntu bionic/main amd64 Packages
     0.16.6712+dfsg1-1ubuntu2 500
        500 http://archive.ubuntu.com/ubuntu bionic/universe amd64 Packages
ubuntu@ubuntu:~$ apt-cache policy freecad-doc
5. Wywołaj stabilną (PPA) wersję programu FreeCAD z GUI lub CLI. Ta ostatnia metoda jest następująca:
./freecad

Wersja PPA rozwojowa (dzienna)

Ponieważ FreeCAD jest ciągle rozwijany, możesz chcieć zainstalować pakiet daily, aby być na bieżąco z najnowszymi ulepszeniami i poprawkami błędów. Repozytorium jest również hostowane na Launchpadzie i nazywa się freecad-daily.

Ta wersja jest codziennie kompilowana z oficjalnego repozytorium Master. Należy pamiętać, że chociaż będzie ona zawierać nowe funkcje i poprawki błędów, może mieć nowsze błędy i być niestabilna.

Dodaj PPA daily do źródeł oprogramowania, zaktualizuj listę pakietów i zainstaluj pakiet daily:

sudo add-apt-repository ppa:freecad-maintainers/freecad-daily
sudo apt-get update
sudo apt-get install freecad-daily

Każdego dnia możesz wykonać aktualizacje do najnowszej wersji daily za pomocą:

sudo apt-get update
sudo apt-get install freecad-daily

Note: W niektórych przypadkach nowy kod lub zależności dodane do FreeCAD powodują błędy w pakietach. Jeśli tak się stanie, pakiet daily może nie zostać wygenerowany, dopóki opiekunowie nie rozwiążą problemów ręcznie. Jeśli chcesz kontynuować testowanie najnowszego kodu, powinieneś otrzymać kod źródłowy i skompilować FreeCAD bezpośrednio. Instrukcje znajdują się na stronie kompilacja.

Run the daily (PPA) version of FreeCAD:

freecad-daily

Note: it is possible to install both the -stable and -daily packages in the same system. This is useful if you wish to work with a stable version, and still be able to test the latest features in development. Notice that the executable for the daily version is freecad-daily, but for the stable version it is just freecad.

Debian and other Debian-based systems

Since Debian Lenny, FreeCAD is available directly from the Debian software repositories and can be installed via synaptic or simply with:

sudo apt-get install freecad

OpenSUSE

FreeCAD is typically installed with YAST (abbr. Yet another Setup Tool) the Linux operating system setup and configuration tool, or in any terminal/console (root rights required) with:

zypper install FreeCAD

Note: This procedure only covers the installation of officially released stable FreeCAD program versions, depending on the installed links to the program package repositories of your OS version. The openSUSE package may be outdated as the packaging may lag behind the latest stable source code. In this case, it is suggested to install the package manually from the below indicated (Expand) source repositories.

A vast release program for FreeCAD package builds are offered. Please visit for a survey:

Survey of repositories on openSUSE

Generally for selecting the correct openSUSE distribution needed it is necessary to click on the particular View button.

Stable

The stable package version: Stable repositories on openSUSE. The correct openSUSE distribution version must be selected in the lower part of the web page.

Note: openSUSE has several options to choose from when downloading FreeCAD. To view these options, visit Survey of stable repositories on openSUSE.

Development

Latest development releases AKA unstable: Unstable repositories listings on openSUSE

It is recommended to grab the binary packages directly. Then select the correct distribution for your installed openSUSE OS.

Gentoo

FreeCAD can be built/installed simply by issuing:

emerge freecad

Fedora

FreeCAD has been included in the official Fedora packages since Fedora 20. It can be installed from the command line with:

sudo dnf install freecad

On older Fedora releases, that was:

sudo yum install freecad

The gui packages managers can also be used. Search for "freecad". The official release package version tends to be well behind the FreeCAD releases. Package: freecad shows the versions included in the Fedora repositories over time and versions.

More current versions can be obtained by downloading one of the .AppImagereleases from the github repository. These work fine on Fedora.

If you want to keep up with the absolute latest daily builds, FreeCAD is also available on copr. To install the build from there, in a terminal session, enter:

sudo dnf copr enable @freecad/nightly
sudo dnf install freecad

That leaves the copr repository active, so

sudo dnf upgrade

or equivalent, will update to the latest FreeCAD build, along with updates from any of the other active repos. If you want something a bit more stable, you can disable @freecad/nightly again after the initial install. The copr repository only keeps builds from the past 2 weeks. This is not a solution if you want to pick a specific older version.

Instructions are also available on compile FreeCAD yourself, including a script specifically for Fedora. With a minor change, to checkout the specific commit from git, any version since about FreeCAD 0.15 can be built on any distribution since Fedora 21.

Arch

Installing FreeCAD on Arch Linux and derivatives (ex. Manjaro):

pacman -S freecad

Other

If you find out that your system features FreeCAD but is not documented in this page, please tell us on the forum!

Many alternative, non-official FreeCAD packages are available on the net, for example for systems like slackware or fedora. A search on the net can quickly give you some results.

Manual install on .deb based systems

If for some reason you cannot use one of the above methods, you can always download one of the .deb packages available on the Download page.
Template:DownloadLinuxStable

Once you downloaded the .deb corresponding to your system version, if you have the Gdebi package installed (usually it is), you just need to navigate to where you downloaded the file, and double-click on it. The necessary dependencies will be taken care of automatically by your system package manager. Alternatively you can also install it from the terminal, navigating to where you downloaded the file, and type:

sudo dpkg -i Name_of_your_FreeCAD_package.deb

changing Name_of_your_FreeCAD_package.deb by the name of the file you downloaded.

After you installed FreeCAD, a startup icon will be added in the "Graphic" section of your Start Menu.

Installing on other Linux/Unix systems

Many common Linux distros now include a precompiled FreeCAD as part of the standard packages. This is often out of date, but is a place to start. Check the standard package managers for your system. One of the following (partial) list of commands could install the official version of FreeCAD for your distro from the terminal. These probably need administrator privileges.

apt-get install freecad
dnf install freecad
emerge freecad
slackpkg install freecad
yum install freecad
zypper install freecad

The package name is case sensitive, so try `FreeCAD` as well as `freecad`. If that does not work for you, either because your package manager does not have a precompiled FreeCAD version available, or because the available version is too old for your needs, you can try downloading one of the .AppImage releases from the github repository. These tend to work on most 64 bit Linux distributions, without any special installation. Just make sure the downloaded file is marked as executable, then run it.

If that still is not good enough, and you cannot locate another source of a precompiled package for your situation, you will need to compile FreeCAD yourself.

Installing Windows Version on Linux

See the Installing on Windows page.

Next Step

Once you've got FreeCAD installed, it's time to get started!