- completely format your external ssd into ntfs using your gist's instructions
- install virtual box on ubuntu host (get the deb for the latest virtualbox from official site)
- check the box for guest additions install
- install vbox extensions pack from official site. Then Tools -> EXtensions -> Install, to install that.
- add your user to vboxusers group (this allows usb sharing access inside machine)
- setup a win10 machine on virtualbox
- add the external ssd to the shared device inside the USB tab of machine settings
- install halseo wintousb tool in it
- get the win10 iso by going to "download win10 iso", downloading that tool, getting the iso file
lsblk
and check the mount point, e.g.,/dev/sda
which might have different partitions like/dev/sda1
etcsudo umount /dev/sda*
. Usesudo umount -l /dev/sda*
if something refuses to unmountsudo fdisk /dev/sda
to delete all partitions one-by-one:- Press
p
to print the current partitions - Press
d
to delete each partition (repeat for all). - Press
w
to write changes and exit. - HINT: just keep doing
d
until you getno partitions remaining to be deleted
, then dow
and exit.
- Press
sudo parted /dev/sda mklabel gpt
to create a new GPT partition tablesudo parted -a optimal /dev/sda mkpart primary 0% 100%
creates a new parition (/dev/sda1
)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import warnings | |
warnings.filterwarnings('ignore', category=FutureWarning) | |
import tensorflow as tf | |
text = tf.constant("Successfull Installation") | |
with tf.compat.v1.Session() as sess: | |
print(sess.run(text)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
absl-py >= 0.7.0 | |
astunparse == 1.6.3 | |
gast == 0.3.3 | |
google_pasta >= 0.1.8 | |
h5py >= 2.10.0, < 2.11.0 | |
keras_preprocessing >= 1.1.1, < 1.2 | |
numpy >= 1.16.0, < 1.19.0 | |
opt_einsum >= 2.3.2 | |
protobuf >= 3.9.2 | |
tensorboard >= 2.2.0, < 2.3.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Variable name | Variable value | Description | |
---|---|---|---|
BAZEL_SH | C:\msys64\usr\bin\bash.exe | allows Bazel to access msys64 | |
BAZEL_VC | C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC | allows Bazel to access Visual C++ compiler | |
BAZEL_WINSDK_FULL_VERSION | 10.0.17763.0 | lets Bazel know the correct Windows SDK version to use |