Skip to main content
99
results
Andrew Fletcher
Whilst installing Python 3.11.6 and running the command 'sudo make altinstall', the following error Creating directory /usr/local/share/man/man1 /usr/bin/install -c -m 644 ./Misc/python.man \    /usr/local/share/man/man1/python3.11.1 if test "xupgrade" != "xno" ; then \    case upgrade in \        upgrade) ensurepip="--altinstall --upgrade" ;; \        install|*) ensurepip="--altinstall" ;;...
Andrew Fletcher
Visual Studio Code (VS Code) allows you to manage extensions using the VS Code...
Andrew Fletcher
A summary of Node package commands Short cut commands npm install...
Andrew Fletcher
Logging into the server, and there are packages to be updated.  You know...
Andrew Fletcher
git clone git@bitbucket.org:{username}/{repo}.git And I was unceremoniously...
Andrew Fletcher
Something I haven't had to do in a while is to change the name of a Git branch both local and remote.   Steps to renaming a branch Rename your local branch: If you are on the branch you want to rename: git branch -m new-nameWhereas, if you're on a different branch: git branch -m old-name new-nameDelete the old-name remote branch and push the new-name local branch: git push origin :old-name new-nameReset the upstream branch for the new-name local branch:Switch to the branch and then: git...
Andrew Fletcher
Post a NetSkope update, composer would fail when running any command that...
Andrew Fletcher
I need to generate a patch and then apply automatically to my Drupal...
Andrew Fletcher
In the terminal type, the following command: sudo apt updateAfter typing the...
Andrew Fletcher
Attempting to run a composer update command, you know the one used...
Andrew Fletcher
Post creating a new branch in the repo, next step was to run the checkout command locally.  On my local environment I ran the following command git checkout {branch-name}However, the response was error: pathspec '{branch-name}' did not match any file(s) known to git  Solution The issue while the new branch is known in the repo, it's not known in my local environment.  To make the new branch known you need to run the fetch command git fetch --allResponse remote: Enumerating...
Andrew Fletcher
Working in an AWS ec2 environment, my goal is to access the server via...
Andrew Fletcher
How to set the Private file path in Drupal using the following steps: Create a...
Andrew Fletcher
This page will be a progressive outline of moving those regular run scripts that...
Andrew Fletcher
Goal: I want to download a table list to a txt or csv file. Initially, as a root...