Sun, 26 Feb 2023 12:44:03 +0100
MicroPython
- fixed an issue checking, if the device data is available
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
1 | ======================== |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
2 | README for the eric7 IDE |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
3 | ======================== |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
4 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
5 | 0. What is eric7? |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
6 | ----------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
7 | eric7 is a full featured Python editor and IDE, written in Python. It is based |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
8 | on the cross platform Qt UI toolkit, integrating the highly flexible Scintilla |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
9 | editor control. It is designed to be usable as everyday quick and dirty editor |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
10 | as well as being usable as a professional project management tool integrating |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
11 | many advanced features Python offers the professional coder. eric7 includes a |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
12 | plug-in system, which allows easy extension of the IDE functionality with |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
13 | plug-ins downloadable from the net. For more details see |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
14 | <https://eric-ide.python-projects.org>. |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
15 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
16 | 1. Installation |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
17 | --------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
18 | Installing eric7 is a simple process. There are various methods available. |
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
19 | Please choose the one best suited to your needs and skills. eric7 may be must |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
20 | with Python 3, Qt5 and PyQt5. |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
21 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
22 | 1.1 Create a Python virtual environment for eric7 |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
23 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
24 | It is recommended to install eric7 into a Python virtual environment in order |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
25 | to keep your Python distribution clean. In order to do that create it by |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
26 | entering the following command in a terminal window. |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
27 | |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
28 | **Linux, macOS**:: |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
29 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
30 | python3 -m venv eric7_venv |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
31 | |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
32 | **Windows**:: |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
33 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
34 | python.exe -m venv eric7_venv |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
35 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
36 | Replace ``eric7_venv`` with the desired path to the directory for the virtual |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
37 | environment. All further instructions will assume this environment name. |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
38 | |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
39 | 1.2a Variant 1: Installation via the "install.py" script |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
40 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
41 | This method results in the most complete install on all supported platforms. |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
42 | After extracting the eric7 distribution archive just execute the following |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
43 | command in a terminal window. |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
44 | |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
45 | **Linux, macOS**:: |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
46 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
47 | ~/eric7_venv/bin/python3 install.py |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
48 | |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
49 | **Windows**:: |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
50 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
51 | eric7_venv\Scripts\python.exe install.py |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
52 | |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
53 | Change the path to the Python executable appropriately. The installation script |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
54 | will check for all prerequisites and will ask for confirmation to install |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
55 | them. If the installation process needs tuning type |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
56 | ``~/eric7_venv/bin/python3 install.py --help`` for some help. Using the |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
57 | ``--yes`` option answers yes to all questions automatically. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
58 | |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
59 | If you want to uninstall the package just execute the ``uninstall.py`` script. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
60 | This gets rid of all installed files. In this case please send an email to the |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
61 | below mentioned address and tell me your reason. This might give me a hint on |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
62 | how to improve eric7. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
63 | |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
64 | During the installation process a file containing some information about the |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
65 | installation will be created. If this is not desired, the ``--no-info`` |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
66 | command line option may be added to the above given install command. |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
67 | |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
68 | 1.2b Variant 2: Installation via the Python Package Index PyPI |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
69 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
70 | This method is the easiest one but does not create a macOS® Application. Enter |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
71 | the following command in a terminal window. |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
72 | |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
73 | **Linux, macOS**:: |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
74 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
75 | ~/eric7_venv/bin/python3 -m pip install --upgrade eric-ide |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
76 | |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
77 | **Windows**:: |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
78 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
79 | eric7_venv\Scripts\python.exe -m pip install --upgrade eric-ide |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
80 | |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
81 | Once the installation is finished navigate to the executable directory of |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
82 | the Python virtual environment and execute the ``eric7_post_install`` script. |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
83 | This will create application menu entries on Linux and desktop and start menu |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
84 | entries on Windows® platforms. |
4313
4dc78bc82783
Updated the README to include a section about installation on Windows using the PyQt installer.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4266
diff
changeset
|
85 | |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
86 | **Linux**:: |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
87 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
88 | ~/eric7_venv/bin/eric7_post_install |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
89 | |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
90 | **Windows**:: |
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
91 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
92 | eric7_venv\Scripts\eric7_post_install.exe |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
93 | |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
94 | 1.3 Installation of Qt Tools via Qt online installer |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
95 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
96 | In order to get the most out of eric7 it is recommended to install the Qt Tools |
8567
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
97 | like ``Qt Designer`` or ``Qt Linguist``. If the above shown installation |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
98 | variants are executed, these tools will be installed automatically. Otherwise |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
99 | it is recommended to get them from th Qt web site by following these steps. |
5079
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
100 | |
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
101 | 1. Download the Qt online installer from the Qt download site. |
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
102 | |
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
103 | 2. Install Qt by executing the installer. |
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
104 | |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
105 | 3. Configure the path to the Qt tools on the ``Qt`` configuration page of the |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
106 | eric7 configuration dialog. |
5079
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
107 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
108 | 2. Installation of translations |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
109 | ------------------------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
110 | The default distribution archive of eric7 includes all supported translations |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
111 | already. If the above installation variant 1 was performed with this, you may |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
112 | skip this section. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
113 | |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
114 | If the ``nolang`` archive was used, translations may be added later on by |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
115 | downloading the desired language pack, extract it to a temporary directory |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
116 | and execute the install-i18n.py script (type |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
117 | ``~/eric7_venv/bin/python3 install-i18n.py``). |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
118 | |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
119 | 3. Running |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
120 | ---------- |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
121 | Just call up eric7_ide, which will start the IDE. Use the "what is"-help |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
122 | (arrow with ?) to get some help. The eric web site provides some |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
123 | documents describing certain aspects of eric. To start the unit test module in |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
124 | a standalone variant simply call up eric7_testing. This will show the same |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
125 | dialog (though with a little bit less functionality) as if started from within |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
126 | eric7_ide. The web browser can be started as a standalone program by executing the |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
127 | eric7_browser script. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
128 | |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
129 | Please note, the first time you start eric7_ide it will recognize, that it |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
130 | hasn't been configured yet, and will show the configuration dialog. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
131 | Please take your time and go through all the configuration items. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
132 | However, every configuration option has a meaningful default value. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
133 | |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
134 | 4. Using eric7_ide on devices with small displays |
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
135 | ------------------------------------------------- |
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
136 | eric7_ide can be used on devices with displays smaller than full HD as well |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
137 | (i.e. smaller than 1920 x 1080 pixels). If such a small screen is detected, |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
138 | the interface using sidebars with just the left sidebar is chosen |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
139 | automatically. This cannot be changed. If the auto-detection fails, use of |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
140 | the small screen layout can be forced by starting eric7_ide with the |
8804
bf6eff477756
Corrected a type in README.rst.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8728
diff
changeset
|
141 | '--small-screen' command line option. This changes the respective settings |
bf6eff477756
Corrected a type in README.rst.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8728
diff
changeset
|
142 | available via the Interface ⇨ Interface configuration page (options 'Layout' |
bf6eff477756
Corrected a type in README.rst.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8728
diff
changeset
|
143 | and 'Combine left and right sidebar'. |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
144 | |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
145 | 5. Running from the sources |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
146 | --------------------------- |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
147 | If you want to run eric7_ide from within the source tree you have to execute |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
148 | the ``compileUiFiles.py`` script once after a fresh checkout from the source |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
149 | repository or when new dialogs have been added. Thereafter just execute |
9394
0385fbd5184b
Updated the README file for the renaming of the main eric7 script (eric7.py -> eric7_ide.py).
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9391
diff
changeset
|
150 | the ``eric7_ide.py`` script. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
151 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
152 | 6. Tray starter |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
153 | --------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
154 | eric7 comes with a little utility called "eric7_tray". This embeds an icon |
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
155 | in the system tray, which contains a context menu to start eric7 and all |
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
156 | it's utilities. Double clicking this icon starts the eric7 IDE. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
157 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
158 | 7. Completions/Calltips |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
159 | ----------------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
160 | eric7 provides an interface to the QScintilla completion and call-tips |
8567
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
161 | functionality. QScintilla2 comes with API files for Python and itself. PyQt6 |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
162 | and PyQt5 contain API files as well. These are installed by default. An API |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
163 | file for eric7 is installed in the same place, if installation variant 1 was |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
164 | chosen. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
165 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
166 | In order to use completions and call-tips in eric7 please configure these |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
167 | functions in the "Preferences Dialog" on the "Editor -> APIs", |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
168 | "Editor -> Autocompletion" and "Editor -> Calltips" pages. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
169 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
170 | Additional completions and call-tip providers are available through the eric7 |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
171 | plug-in system. See below for details. |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
172 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
173 | 8. Remote Debugger |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
174 | ------------------ |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
175 | In order to enable the remote debugger start eric7, open the preferences |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
176 | dialog and configure the settings on the debugger pages. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
177 | |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
178 | The remote login must be possible without any further interaction (i.e. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
179 | no password prompt). If the remote setup differs from the local one you |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
180 | must configure the Python interpreter and the Debug Client to be used |
5422
222da86472d9
Some corrections to readme files and debugger stuff, which still referenced the old standard/threaded debugger variants.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
5403
diff
changeset
|
181 | in the Preferences dialog. Use the ``install-debugclients.py`` script |
222da86472d9
Some corrections to readme files and debugger stuff, which still referenced the old standard/threaded debugger variants.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
5403
diff
changeset
|
182 | to install the debug client files and set the entries of the a.m. |
222da86472d9
Some corrections to readme files and debugger stuff, which still referenced the old standard/threaded debugger variants.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
5403
diff
changeset
|
183 | configuration page accordingly. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
184 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
185 | To ease the installation process of the debug client, the eric7 sources |
5079
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
186 | include the script ``install-debugclients.py``. |
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
187 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
188 | 9. Passive Debugging |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
189 | -------------------- |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
190 | Passive debugging mode allows the startup of the debugger from outside |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
191 | of the IDE. The IDE waits for a connection attempt. For further details |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
192 | see the file README-passive-debugging.rst. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
193 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
194 | 10. Plug-in System |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
195 | ------------------ |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
196 | eric7 contains a plug-in system, that is used to extend eric7's |
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
197 | functionality. Some plug-ins are part of eric7. Additional plugins |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
198 | are available via the Internet. Please use the built-in plug-in |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
199 | repository dialog to get a list of available (official) plug-ins |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
200 | and to download them. For more details about the plug-in system |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
201 | please see the documentation area. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
202 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
203 | 11. Interfaces to additional software packages |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
204 | ---------------------------------------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
205 | At the moment eric7 provides interfaces to the following software |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
206 | packages. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
207 | |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
208 | Qt-Designer |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
209 | This is part of the Qt distribution and is used to generate user |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
210 | interfaces. |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
211 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
212 | Qt-Linguist |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
213 | This is part of the Qt distribution and is used to generate |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
214 | translations. |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
215 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
216 | Qt-Assistant |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
217 | This is part of the Qt distribution and may be used to display help |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
218 | files. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
219 | |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
220 | Mercurial |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
221 | This is a distributed version control system available from |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
222 | <https://www.mercurial-scm.org/>. It is the one used by eric7 itself. |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
223 | |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
224 | Git |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
225 | This is another (and probably more widely known) distributed version |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
226 | control system. It is available from <https://www.git-scm.com>. |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
227 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
228 | Subversion |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
229 | This is a version control system available from |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
230 | <https://subversion.apache.org>. eric7 supports two different |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
231 | Subversion interfaces. One is using the svn command line tool, the |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
232 | other is using the PySvn Python interface |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
233 | <https://pysvn.sourceforge.io/>. The selection is done automatically |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
234 | depending on the installed software. The PySvn interface is preferred. |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
235 | This automatism can be overridden an a per project basis using the |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
236 | "User Properties" dialog. |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
237 | |
8567
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
238 | pip |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
239 | This is a tool to install additional Python packages from the Python |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
240 | Package Index (PyPI). It is available from |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
241 | <https://pypi.org/project/pip/> |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
242 | |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
243 | conda |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
244 | This is another tool to install additional Python packages and manage |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
245 | virtual environments. It is available from |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
246 | <https://github.com/conda/conda> or <https://pypi.org/project/conda/> |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
247 | |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
248 | virtualenv |
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
249 | This is a tool to create Python virtual environments. It is available |
9391
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
250 | from <https://pypi.org/project/virtualenv/>. |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
251 | |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
252 | **Note**: Python 3 includes the "venv" package, which can also be used |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
253 | to create Python virtual environments. This package is preferred and |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
254 | is used by eric in various places. |
8567
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
255 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
256 | coverage.py |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
257 | This is a tool to check Python code coverage. A slightly modified |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
258 | version is part of the eric7 distribution. The original version is |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
259 | available from |
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
260 | <http://www.nedbatchelder.com/code/modules/coverage.html> |
0
de9c2efb9d02
Started porting eric4 to Python3
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
diff
changeset
|
261 | |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
262 | profile |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
263 | This is part of the standard Python distribution and is used to profile |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
264 | Python source code. |
9391
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
265 | |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
266 | black |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
267 | This is a tool to format the source code according to the black formatting |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
268 | rules. More information is available from <https://github.com/psf/black> |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
269 | |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
270 | CycloneDX |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
271 | This is a tool to generate SBOM (Software Bill Of Material) files. For |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
272 | more information see <https://github.com/CycloneDX/cyclonedx-python> |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
273 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
274 | 12. Internationalization |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
275 | ------------------------ |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
276 | eric7 and its tools are prepared to show the UI in different languages, which |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
277 | can be configured via the preferences dialog. The Qt and QScintilla |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
278 | translations are searched in the translations directory given in the |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
279 | preferences dialog (Qt page). If the translations cannot be found, some part |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
280 | of the HMI might show English texts even if you have selected something else. |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
281 | If you are missing eric7 translations for your language and are willing to |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
282 | volunteer for this work please send me an email naming the country code and |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
283 | I will send you the respective Qt-Linguist file. |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
284 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
285 | 13. Window Layout |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
286 | ----------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
287 | eric7 provides a configurable window layout. The visibility of the various tool |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
288 | panes can be configured. The position of the shell pane may be configured as |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
289 | well. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
290 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
291 | 14. Source code documentation |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
292 | ----------------------------- |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
293 | eric7 has a built in source code documentation generator, which is |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
294 | usable via the command line as well. For further details please see |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
295 | the file README-eric7-doc.rst. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
296 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
297 | 15. Included Tools |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
298 | ------------------ |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
299 | eric7 comes with a long list of tools. These can be started via the eric7 |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
300 | tray starter or directly via the command line. They are available from within |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
301 | the IDE. The included tools are (sorted alphabetically): |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
302 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
303 | * **eric7_api.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
304 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
305 | This is the tool to generate API files from Python source code. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
306 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
307 | * **eric7_browser.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
308 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
309 | This is the eric7 web browser. It is a full blown browser based on |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
310 | QtWebEngine, which is based on the Chromium web engine. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
311 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
312 | * **eric7_compare.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
313 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
314 | This tool may be used to compare two files side-by-side. Differences |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
315 | between the files are highlighted by coloring the text. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
316 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
317 | * **eric7_configure.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
318 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
319 | This is the standalone variant of the configuration dialog. It offers |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
320 | most of the configuration options as are available from within eric7. |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
321 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
322 | * **eric7_diff.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
323 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
324 | This tool may be used to view the differences between two files. These |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
325 | are shown as a unified or context diff. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
326 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
327 | * **eric7_doc.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
328 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
329 | This is the tool to extract source code documentation from source files |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
330 | and format that as HTML files. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
331 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
332 | * **eric7_editor.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
333 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
334 | This is a stripped down, standalone variant of the editor embedded in the |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
335 | eric7 IDE. |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
336 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
337 | * **eric7_hexeditor.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
338 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
339 | This is a standalone hex editor to work with binary files. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
340 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
341 | * **eric7_iconeditor.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
342 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
343 | This is a little tool to create pixel based icons and save them in a |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
344 | pixmap format. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
345 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
346 | * **eric7_plugininstall.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
347 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
348 | This is a standalone utility to install eric7 plug-ins available on the |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
349 | local machine. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
350 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
351 | * **eric7_pluginrepository.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
352 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
353 | This is a standalone variant of the plug-in repository window. It is used |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
354 | to view the available plug-ins and download them to the local machine. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
355 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
356 | * **eric7_pluginuninstall.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
357 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
358 | This is a standalone utility to uninstall eric7 plug-ins. |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
359 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
360 | * **eric7_qregularexpression.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
361 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
362 | This tool may be used to create regular expressions based on |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
363 | QRegularExpression. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
364 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
365 | * **eric7_re.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
366 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
367 | This tool may be used to create Python regular expressions as used with the |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
368 | re module. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
369 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
370 | * **eric7_shell.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
371 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
372 | This is a standalone, graphical Python shell application. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
373 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
374 | * **eric7_snap.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
375 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
376 | This tool may be used to create screenshots of the whole screen, individual |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
377 | windows or selectable areas. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
378 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
379 | * **eric7_sqlbrowser.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
380 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
381 | This is a simple tool to inspect SQL databases. All database products |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
382 | supported by Qt may be inspected. Note, that Qt database drivers may be |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
383 | installed first. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
384 | |
9391
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
385 | * **eric7_testing** |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
386 | |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
387 | This is a standalone tool to execute existing unit tests using the Python |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
388 | built-in "unittest" package or the external "pytest" suite. |
ea76e8066c54
Updated the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8804
diff
changeset
|
389 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
390 | * **eric7_tray.py** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
391 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
392 | This is the tray starter application. See above for some details. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
393 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
394 | * **eric7_trpreviewer** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
395 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
396 | This tool may be used to preview translations of Qt forms. Forms and |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
397 | language files may be loaded separately. Multiple languages can be loaded |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
398 | and the active language can be switched between the loaded ones. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
399 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
400 | * **eric7_uipreviewer** |
7222
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
401 | |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
402 | This tool is used to preview Qt forms. The display may be switched between |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
403 | the available Qt window styles. |
fc6530b432ad
README: some updates and added a list of all included eric6 tools.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7037
diff
changeset
|
404 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
405 | * **eric7_virtualenv** |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
406 | |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
407 | This is a standalone tool to manage Python virtual environments. It is |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
408 | like the integrated pane and offers the same functionality. |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
409 | |
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
410 | 16. License |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
411 | ----------- |
8567
a9ec6702c664
Fine tuned the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8477
diff
changeset
|
412 | eric7 (and the eric7 tools) is released under the conditions of the GPLv3. See |
6958
949c3c76cc8a
setup.py: continued implementing support for setup.py and tested against test.pypi.org.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6942
diff
changeset
|
413 | separate license file ``LICENSE.GPL3`` for more details. Third party software |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
414 | included in eric7 is released under their respective license and contained in |
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
415 | the eric7 distribution for convenience. |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
416 | |
8728
62b44a7c0a3a
Introduced the command line option '--small-screen' and a small screen detection method to choose the interface layout suitable for screen small than full HD. Added a section to the README file.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
8567
diff
changeset
|
417 | 17. Bugs and other reports |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
418 | -------------------------- |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
419 | Please send bug reports, feature requests or contributions to eric bugs |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
420 | address. After the IDE is installed you can use the "Report Bug..." |
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
421 | entry of the Help menu, which will send an email to |
7037
4560e7a43588
README.rst: Fixed some issues in the text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6958
diff
changeset
|
422 | <eric-bugs@eric-ide.python-projects.org>. To request a new feature use the |
4266
17c215c416ba
Made some corrections to the various README files and converted them to reStructured Text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4003
diff
changeset
|
423 | "Request Feature..." entry of the Help menu, which will send an email to |
7037
4560e7a43588
README.rst: Fixed some issues in the text.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
6958
diff
changeset
|
424 | <eric-featurerequest@eric-ide.python-projects.org>. |
5079
afc7a0bfcbf7
Enhanced the README.rst file to cover the PyQt wheels as well.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
4313
diff
changeset
|
425 | |
8477
81e25fe19818
Updated the documentation contained in the 'docs' folder.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7929
diff
changeset
|
426 | Alternatively bugs may be reported via the eric7 issue tracker at |
7929
fdd769e06482
README: updated the installation section to show the commands for Linux/macOS and Windows separately.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
7222
diff
changeset
|
427 | <https://tracker.die-offenbachs.homelinux.org/>. |