Search In This Website

Menampilkan postingan yang diurutkan menurut relevansi untuk kueri installation. Urutkan menurut tanggal Tampilkan semua postingan
Menampilkan postingan yang diurutkan menurut relevansi untuk kueri installation. Urutkan menurut tanggal Tampilkan semua postingan

Minggu, 01 Juni 2025

Some Of Information Technology Default Path

to see Command Prompt Default Installation Path and Most Common Default Installation Path, click Command Prompt Path And Most Common Program
to see ImageMagick Default Installation Path, Check ImageMagick Version
to see Java Default Installation Path, click 
to see Notepad Default Installation Path, click Notepad Path
to see PHP Default Path, click PHP Local Server Folder Location
to see Python Default Installation Path, 
Ruby Default Installation Path, click 


Notes:

  • Some old Windows version has limited path lengths to hundred characters. This meant that paths longer than this would not resolve and errors would result. In the latest versions of Windows, this limitation can be expanded to approximately ten thousand characters.


using windows, python full installation path


Jumat, 20 Oktober 2023

Check PlantUML Installation

How To Check Software Requirement And Other Support Tools:

  1. Click this How To Check Your Java Version link to know is your java has installed. In this example for use plantuml.1.2021.3.jar, you must use Java 6 (JRE 1.6).
  2. Check your GraphViz installation, type this command in Command Prompt:
    dot -V

How To Check PlantUML Installation

  1. Open your Command Prompt.
  2. Go to your PlantUML installation, e.g. if your PlantUML installation path D:\plantuml\, type :
    D:
    then press enter.


  3. type this:
    cd plantuml
    then press enter.


  4. type this:
    java -jar plantuml.jar -version
    press Enter on keyboard.



< to learn about Open Command Prompt in step 1, click How To Launch Command Prompt



plant uml, unified modelling language, system analyst and design

Kamis, 01 Agustus 2024

Set Up The Python In Microsoft Windows 8

Set Up The Python Path variable In Microsoft Windows 8

  1. Let’s locate the directory where the Python executable is installed in our system, and note down the path to this directory.
  2. Open the "Start menu" and click "All apps" down arrow button in the bottom-left corner.
  3. Scroll through the list of apps and click a "Control Panel" on the "Windows System". The Control Panel will appear on the screen.
    • Under "View by:",  click "Category"
    • then select the “System and Security” section.
    • then select the “System” section on the right side.
  4. In the System window, click on Advanced System Settings on the left sidebar.
  5. In the System Properties window (Advanced tab):
    • Click the Environment Variables button.
    • Under the System Variables section, find Path variable.
    • Click Edit button to modify the existing variable, or New button to create a new one, if the Path variable is not exist..
    • In the Variable Name field, enter Path
      In the Variable Value field, add the path to our Python installation directory (e.g., "C:\Program Files\Python\pythonXX")  to the list of paths if it’s not already there.
    • Click OK to apply the changes.
  6. Click OK again, click OK again in System Properties window, and restart the computer to ensure the changes take effect.

Set The Python Path Variable Via The Command Line

Notes

WARNING use the step "Set Up The Python Path variable In Microsoft Windows 8" from above, if you have Microsoft Windows Environment Variables Path more than 1024 characters!

If you would prefer to set the Python Path Variable via the command line:
  1. Open Command Prompt (make sure you "Run as administrator" with right click mouse, so you're able to add a system environment variable).
  2. Set the value of the environment variable to your Python installation path as follows:
    setx /m PATH "C:\Program Files\Python\pythonXX"
  3. Close and start Command Prompt window again to reload the environment variables then use the following command to check the it's been added correctly and restart the computer to ensure the changes take effect.
  4. Then use the following command to check the path to your Python installation been added correctly.  Then you should see the path to your Python installation.
    echo %PATH%
Notes: 
  • Be aware if you have Microsoft Windows Environment Variables Path over than 1024 characters when assigning contents to a variable using setx, it can result in loss of data previously held by the target variable like in this screencapture picture article post.
  • If the Path variable or Expandable Environment-Variable Strings %PATH% is exist and not empty then you can add semicolon ( ; ) and then put the directory from the Python executable is installed in our system.
  • Be aware If You running the command with an existing variable without double quotes (" "), Expandable Environment-Variable Strings %PATH% and semicolon ( ; ) can be removes any variable references.
  • Only administrators account can change the Environment Variable.
  • Non standard Command Prompt or PowerShell may not running well.
  • XX is the python version.
  • You can place the installed Python inside the no matter folder that able to execute your Python script and compile your Python script, for example "C:\Program Files\Python\pythonXX".






Bibliography

https://www.python.org/ ( manual ebook )
https://realpython.com/
https://superuser.com/
https://support.microsoft.com/en-us ( manual ebook )
https://learn.microsoft.com/ ( manual ebook )
https://winaero.com/
https://www.bleepingcomputer.com/
https://www.ionos.co.uk/
https://www.itechtics.com/
https://www.liquidweb.com/

install, setup, installation, python setup and usage, using python on windows, environment variable


Related Post

Selasa, 03 September 2024

PlantUML Local Installation

Local Installation Procedure

PlantUML Installation requirements:

Java

  • Requires Java (certain version) to be installed on your machine.
  • Check if Java is already installed, click How To Check Your Java Version.
  • If not installed, download and install it from the official Java website or through package managers e.g. apt for Ubuntu, brew for macOS, etc.

GraphViz

  • Needed only for some diagrams:
    • Usecase diagrams
    • Class diagrams
    • Object diagrams
    • Component diagrams
    • Deployment diagram
    • State diagrams
    • Legacy activity diagrams

PlantUML

  • Once ready, download the plantuml.jar file.
  • No further unpacking or installation procedures are needed.

Notes

If you want to initial explore to PlantUML, use the PlantUML online editor, search in the search engine (e.g. Google) or use PlantUML official online editor.

plant uml, unified modelling language, system analyst and design, textual diagram, text to diagram, textual modelling

Bibliography:

https://graphviz.org/
https://plantuml.com/ ( manual ebook )
https://www.oracle.com/

Related Post

Selasa, 01 Oktober 2024

How To Check Your Ruby Version

How To Check Your Ruby Version In Microsoft Windows

  1. open Command Prompt.
  2. type  ruby -v
    or
    type ruby --version
  3. press Enter on keyboard.



Notes: 
  • For Ruby CLI ( Command Line Interface ) documentation, type: ruby --help
  • The Default installation folder of Ruby : C:\Ruby27
  • The Default installation folder of Ruby Help Manual : C:\Ruby27\share\doc\ruby\html\
  • The number 27 in Ruby27 is only for sample, you can adjust to your Ruby installation.

How To Check Your Ruby Gems Version In Command Prompt

Ruby Gems is packaging/bundling tools in Ruby.
  1. open Command Prompt.
  2. type  gem -v
    or
    type gem --version
  3. press Enter on keyboard.



Notes: For Ruby Gem CLI ( Command Line Interface ) documentation, type: gem --help

<<< back to   Study About Ruby

to learn checking Ruby Gem version, click How-to-check-version-of-ruby-gem >

Footnote

  • Use this tutorial sample according to your needs, your environment and your requirement.
  • To see the more clear picture, click on the picture
  • to learn about Open Command Prompt in step 1, click How To Launch Command Prompt

Bibliography

Ruby in Practice;Manning publisher
Ruby in a Nutshell;O'Reilly publisher
https://rubygems.org/ ( manual book )
https://www.ruby-lang.org/ ( manual book )

command line, terminal, bash shell, installation, install

Related Post

Senin, 27 Maret 2023

How To Check Your Python Version

How To Check Your Python Version In Microsoft Windows



To Check The Python Version 2

  1. open Command Prompt.
  2. type  python –-version
    or
    type python –V
    ( must be V in capital text )
  3. press Enter on keyboard.


To Check The Python Version 3

  1. open Command Prompt.
  2. type python3 --version
    or
    type python –V
    ( must be V in capital text )
  3. press Enter on keyboard.

To Check PIP Version

PIP is package management tool in Python.

  1. open Command Prompt.
  2. type :
    • python -m pip show pip

      or
    • python -m pip --version

      or
    • pip -V
      ( must be V in capital text )
      or
    • pip --version
      or
    • pip3 --version
      to check PIP on Python 3
      or
    • pip3 -V
      to check PIP on Python 3
      or
    • pip list

  3. press Enter on keyboard.

 < to learn about Open Command Prompt in step 1, click How To Launch Command Prompt

To learn about check Sqlite version, click How To Check Sqlite Version >



<< back to Study About Python


Bibilography:

Master Python by Abhishek Singh;Python from the Very Beginning by John Whitington;Python Dash: Build Data Analysis and Visualization Apps with Plotly by Adam Schroeder, et. al.;Python Phrasebook by Brad Dayley;Python 3 Standard Library by Doug Hellman;Intuitive Python: Productive Development For Projects That Last by David Muller

command line, terminal, bash shell, installation, install

Related Post:

Jumat, 14 Juni 2024

Set The JAVA_HOME variable

Set The JAVA_HOME Variable In Microsoft Windows 11

<< Previous lesson: Default Java Path Environment
  1. Let’s locate the directory where the JDK is installed on our system, and note down the path to this directory.
  2. Open the Start menu and click All apps in the upper-right corner.
  3. Scroll through the list of apps and click Windows Tools.
  4. Click Control Panel.
  5. Under View by, click Large icons to view a list of all Control Panel items, then select System.
  6. In the System window, click on Advanced System Settings on the left sidebar.
  7. In the System Properties window (Advanced tab):
    • Click the Environment Variables button.
    • Under the System Variables section, find JAVA_HOME.
    • Click Edit to modify the existing variable, or New to create a new one.
    • In the Variable Name field, enter JAVA_HOME.
    • In the Variable Value field, enter the path to our JDK installation directory (e.g., C:\Program Files\Java\jdkX.X.X_XX).
  8. In the System Properties window, select the Path variable under the System Variables section. Click Edit, and add %JAVA_HOME%\bin to the list of paths if it’s not already there.
  9. Click OK to apply the changes and restart the computer to ensure the changes take effect.

Set The JAVA_HOME Variable Via The Command Line

If you would prefer to set the JAVA_HOME (or JRE_HOME) variable via the command line:
  1. Open Command Prompt (make sure you Run as administrator so you're able to add a system environment variable).
  2. Set the value of the environment variable to your JDK (or JRE) installation path as follows:
    setx /m JAVA_HOME "C:\Program Files\Java\jdkXX.X.XX.X"
  3. Close and start Command Prompt window again to reload the environment variables then use the following command to check the it's been added correctly.
    echo %JAVA_HOME%
  4. You should see the path to your JDK (or JRE) installation.
NOTES: 
  • Be aware if you have Microsoft Windows Environment Variables Path over than 1024 characters when assigning contents to a variable using setx, it can result in loss of data previously held by the target variable like in this screencapture picture article post.
  • X is version based on your Java installed version.

<< back to  Study About Java 1


Bibliography

https://support.microsoft.com/en-us
https://www.baeldung.com/
https://www.groovypost.com/

install, setup, installation

Related Post

Senin, 05 Mei 2025

Set Up The Python In Microsoft Windows 8 With Picture

Set Up The Python Path variable In Microsoft Windows 8

  1. Let’s locate the directory where the Python executable is installed in our system, and note down the path to this directory.

    Locate the directory of the Python executable folder
    Locate the directory of the Python executable folder

  2. Open the "Start menu" and click "All apps" down arrow button in the bottom-left corner.

    Start Menu Windows opened

  3. Scroll through the list of apps and click "Control Panel" on the "Windows System". The Control Panel will appear on the screen.

    Scroll through the list of apps 1
    Scroll through the list of apps 1


    Scroll through the list of apps 2
    Scroll through the list of apps 2


    click "Control Panel" on the "Windows System"
    click "Control Panel" on the "Windows System"


    Control Panel opened
    Control Panel opened

    • Under "View by:",  click "Category"

      Under the "View by:",  click "Category"

    • then select the “System and Security” section.

      select the “System and Security” section

    • then select the “System” section on the right side.

      then select the “System” section on the right side.

  4. In the System window, click on Advanced System Settings on the left sidebar.

    click on Advanced System Settings on the left sidebar

  5. In the System Properties window (Advanced tab):

    click Advanced tab

    • Click the Environment Variables button.

      click the Environment Variables button.

    • Under the System Variables section, find Path variable.
      find and click Path variable in the middle

    • Click Edit button to modify the existing variable, or New button to create a new one, if the Path variable is not exist.
      Click the Edit button or click the New button.
    • In the Variable Name field, ensure you enter Path.
      Enter Variable name, enter Variable value, then click OK button

      In the Variable Value field, add the path of our Python installation directory (e.g., "C:\Program Files\Python\pythonXX").
    • Click OK button on the Edit System Variable window, to apply the changes.
  6. Click OK button again, click OK button again in System Properties window, and restart the computer to ensure the changes take effect.

    Click OK button on the Environment Variables window


    Click OK button again in System Properties window



    Click Start button > click Power Options button
    on the right top corner > click Restart

Notes

  • In the step 1 to open CommandPrompt, click How To Launch Command Prompt
  • After step 6 from above, then you can check to the "Set The Python Path Variable Via The Command Line" in the step 4 below. After finish, you can go to the next lesson.

Set The Python Path Variable Via The Command Line


WARNING use the step "Set Up The Python Path variable In Microsoft Windows 8" from above, if you have Microsoft Windows Environment Variables Path more than 1024 characters!

If you would prefer to set the Python Path Variable via the command line, and your Microsoft Windows Environment Variables Path is less than 1024 characters, follow this below step  :
  1. Open Command Prompt (make sure you "Run as administrator" with right click mouse, so you're able to add a system environment variable).

    Open the "Start menu" and click "All apps" down arrow button
     in the bottom-left corner.



    Find and hover the Command Prompt


    right click mouse on Command Prompt, then click "Run as administrator"

  2. Set the value of the environment variable to your Python installation path as follows:
    setx /m PATH "C:\Program Files\Python\pythonXX"

    type setx /m PATH "C:\Program Files\Python\pythonXX"

  3. Close and start Command Prompt window again to reload the environment variables and restart the computer to ensure the changes take effect.

    Close the Command Prompt window


    Click Start button > click Power Options button
    on the right top corner > click Restart

  4. After restart the Microsoft Windows. Use the step 1 again to open Command Prompt window. Then use the following command to check the path of your Python installation been added correctly.
    echo %PATH%

    type echo %PATH%

Notes: 
  • Be aware if you have Microsoft Windows Environment Variables Path over than 1024 characters when assigning contents to a variable using setx, it can result in loss of data previously held by the target variable.
  • If the Path variable or Expandable Environment-Variable Strings %PATH% is exist and not empty then you can add semicolon ( ; ) and then put the directory where the Python executable is installed in our system.
  • Be aware If You running the command with an existing variable without double quotes (" "), Expandable Environment-Variable Strings %PATH% and semicolon ( ; ) can be removes any variable references.
  • Only administrators account can change the Environment Variable.
  • Non standard Command Prompt or PowerShell may not running well.
  • XX is the python version.
  • You can place the installed Python inside the no matter folder that able to execute your Python script and compile your Python script, for example "C:\Program Files\Python\pythonXX".


Bibliography

Introduction to computation and programming using Python : with application to computational modeling and understanding data;John V. Guttag;The MIT Press
Python;Abhishek Singh
Python;David Beazley;O'Reilly
Python Crash Course;Eric Matthes;No Starch Press
Python Crash Course;Erick Myers
Python;Dr. Joseph Teguh Santoso, S.Kom., M.Kom
Python;Jubilee Enterprise;Elex Media Komputindo
Python;Budi Raharjo;Informatika
Python for Everybody;Dr. Charles Russell Severance, et. al.
Python for Scientists;John M. Stewart, et. al.
Quick Python;David Matuszek;Routledge
https://superuser.com/
https://support.microsoft.com/en-us
https://www.bleepingcomputer.com/