Skip to content

Tag: Windows

Notes on Python venv

Python 3.3 or later comes with venv. For Python 3.* < 3.3 with apt:

$ sudo apt install python3-venv

To create, activate and pip install packages:

$ python -m venv my_venv
$ source my_venv/bin/activate
(my_venv)$ pip install gimpformats

To deactivate the venv:

(my_venv)$ deactivate

This allows to have Python virtual environments with isolation. It’s particularly useful when using systems that don’t allow to use pip directly as WSL (Windows Subsystem for Linux).

Windows 10 installation error 0x80300024

Windos 10 Pro edition installation

“We couldn’t install Windows in the location you chose. Please check your media drive. Here’s more info about what happened: 0x80300024”

Just remove all drivers except the one you will install Windows 10.

I had 2 hard disk drivers and 1 SSD, where I wanted to have 2 partitions, one of them with Windows 10. The installation only worked after I removed the SATA cables from my other 2 drivers (the HHDs).

Later I put the drivers cables back.

JavaFX on Linux!

Yeah. No more workarounds. Download now JavaFX 1.2 for Windows, MacOS X, Linux and OpenSolaris!

bob sponja dancinha

\o/

There’s also a lots of improvements in the language and the API. For details on that read this document. Unfortunately, as a side effect of those great changes some JavaFX source codes posted here are now deprecated and need a few changes to compile again but the online preview of them as applet or Java Web Start will continue to work well.

Let’s code.