Installation
To install layoutcss you just have to follow simple steps :
1. Download LayoutCSS
2. Rename the downloaded file
Rename the downloaded file layoutcss
, it will be more simple to run it via this name.
3. Make the file executable
If you are on Linux or MacOS you will need to make the file executable before to run it.
To do this it’s really simple, just run the following command in the same directory than layoutcss :
chmod +x ./layoutcss
4. Move it
On Linux or MacOs :
- create a directory
/home/YourUsername/layoutcss
- place it the layoutcss file inside
On Windows :
- create a directory
C:\Users\YourUsername\layoutcss
- place it the layoutcss file inside
5. Add it to your path
Now you just have to add the layoutcss folder previously created to your path.
On MacOS/Linux :
echo 'export PATH="$HOME/layoutcss:$PATH"' >> ~/.zshrc
source ~/.zshrc
Note : If you are not using bash instead just replace zshrc
by bashrc
On Windows :
If you have placed the layoutcss folder at C:\Users\YourUsername\layoutcss
, open PowerShell and run :
[System.Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Users\$env:UserName\layoutcss", [System.EnvironmentVariableTarget]::User)