Installing more workbenches/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>
== Introduction ==

Since v0.17 it is easy to add [[external_workbenches|external workbenches]] by using the [[Std_AddonMgr|Addon Manager]]. A regular user doesn't need to do more than use this tool.

Keep reading for more information regarding installation of workbenches.

<div class="mw-translate-fuzzy">
== Описание ==
== Описание ==
Добавить [[external workbenches/ru|внешний верстак]] в FreeCAD легко.
Добавить [[external workbenches/ru|внешний верстак]] в FreeCAD легко.
</div>


Workbenches are contained in a folder that must be simply copied into
Workbenches are nothing more than collections of files that are placed in a folder. This folder is usually compressed into a zip archive. On installation, this folder is simply uncompressed and copied to
{{Code|code=
{{Code|code=
$ROOT_DIR/Mod/
$ROOT_DIR/Mod/
}}
}}
where {{incode|$ROOT_DIR}} is a top level directory searched by FreeCAD on startup.
where {{incode|$ROOT_DIR}} is a top level directory searched by FreeCAD on startup. This is essentially what the [[Std_AddonMgr|Addon Manager]] does.


The {{incode|Mod/}} directories are scanned every time FreeCAD is started, and the available workbenches are automatically added.
The {{incode|Mod/}} directories are scanned every time FreeCAD is started, and the available workbenches are automatically added.


== Installing system-wide ==
== Installing system-wide ==

Workbenches installed in this way will be available to all users. Depending on your system, you might need administrator privileges to access the installation directory.
Workbenches installed in this way will be available to all users. Depending on your system, you might need administrator privileges to access the installation directory.


Line 20: Line 29:


== Installing for a single user ==
== Installing for a single user ==

Workbenches installed in this way will be available only to one user, but will not require any administrator privileges.
Workbenches installed in this way will be available only to one user, but will not require any administrator privileges.


Line 33: Line 43:
Смотрите так же детальное описание [[How_to_install_additional_workbenches|как установить дополнительные верстаки]].
Смотрите так же детальное описание [[How_to_install_additional_workbenches|как установить дополнительные верстаки]].


{{Powerdocnavi{{#translation:}}}}
[[Category:Developer/ru]]
[[Category:Poweruser_Documentation/ru]]
[[Category:Developer Documentation]]

{{clear}}
{{clear}}

Revision as of 12:50, 12 May 2020

Introduction

Since v0.17 it is easy to add external workbenches by using the Addon Manager. A regular user doesn't need to do more than use this tool.

Keep reading for more information regarding installation of workbenches.

Описание

Добавить внешний верстак в FreeCAD легко.

Workbenches are nothing more than collections of files that are placed in a folder. This folder is usually compressed into a zip archive. On installation, this folder is simply uncompressed and copied to

$ROOT_DIR/Mod/

where $ROOT_DIR is a top level directory searched by FreeCAD on startup. This is essentially what the Addon Manager does.

The Mod/ directories are scanned every time FreeCAD is started, and the available workbenches are automatically added.

Installing system-wide

Workbenches installed in this way will be available to all users. Depending on your system, you might need administrator privileges to access the installation directory.

Copy the workbench folder into $INSTALL_DIR/Mod/, where $INSTALL_DIR is the FreeCAD installation directory.

  • On Linux it is usually /usr/share/freecad/Mod/
  • On Windows it is usually C:\Program Files\FreeCAD\Mod\
  • On Mac OSX it is usually /Applications/FreeCAD/Mod/

Installing for a single user

Workbenches installed in this way will be available only to one user, but will not require any administrator privileges.

Copy the workbench folder into $USER_DIR/Mod/, where $USER_DIR is the FreeCAD directory for a particular username.

  • On Linux it is usually /home/username/.FreeCAD/Mod/
  • On Windows it is %APPDATA%\FreeCAD\Mod\, which is usually C:\Users\username\Appdata\Roaming\FreeCAD\Mod\
  • On Mac OSX it is usually /Users/username/Library/Preferences/FreeCAD/Mod/. One way to get to the preferences directory is to use the "Finder" menu item Go → Go to Folder, and entering ~/Library/Preferences/FreeCAD.

Дополнительная информация

Дополнительная информация о том, как создать пользовательский верстак, может быть найдена на хабе опытных пользователей и хабе разработчиков.

Смотрите так же детальное описание как установить дополнительные верстаки.