Giter Club home page Giter Club logo

Comments (4)

AndreaMonzini avatar AndreaMonzini commented on August 15, 2024

In GNU/Linux as alternative i just renamed the executable binary synthesis to synthesis.exe and it works.
Link to the to binary releases:
https://github.com/EmbarkStudios/texture-synthesis/releases

from texture_synthesis.

robw001 avatar robw001 commented on August 15, 2024

Actually, I'd like to see the problem fixed, not the symptom. Renaming the original executable to make this addon work is not a fix.

An even cleaner way to fix the code would be like this:

import os, platform

(...)

class TextureSynthPreferences(bpy.types.AddonPreferences):
    bl_idname = addon_name_lowercase()

    ts_executable = "texture-synthesis"
    if platform.system() == "Windows":
        tx_executable += ".exe"

    def check_ts_exist(self, context):
        absPath, ts_exists = check_file_exist(self.text_synth_path)
        self['text_synth_path'] = absPath

        if ts_exists and os.path.basename(absPath) == tx_executable:
            self.display_info = "texture-synthesis executable found in: " + absPath
        else:
            self.display_info = "texture-synthesis executable not found in: " + absPath

(...)

from texture_synthesis.

JoseConseco avatar JoseConseco commented on August 15, 2024

Fixed in 1.1 update using: if platform.system() == "Windows"

from texture_synthesis.

robw001 avatar robw001 commented on August 15, 2024

Thanks!

from texture_synthesis.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.